Skip to main content
POST
/
v1
/
frameworks
/
{id}
/
requirements
Add a custom requirement to a framework instance
curl --request POST \
  --url http://localhost:3333/v1/frameworks/{id}/requirements \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "Access Review",
  "identifier": "10.3",
  "description": "<string>"
}
'

Path Parameters

id
string
required

Body

application/json
name
string
required

Requirement name

Example:

"Access Review"

identifier
string
required

Identifier

Example:

"10.3"

description
string
required

Description

Response

201 - undefined