Skip to main content
POST
/
v1
/
framework-instance-requirements
Create a framework instance requirement
curl --request POST \
  --url http://localhost:3333/v1/framework-instance-requirements \
  --header 'Content-Type: application/json' \
  --data '
{
  "frameworkInstanceId": "frm_abc123",
  "name": "Custom Access Control",
  "description": "Custom requirement for access control policies",
  "identifier": "CUSTOM-1",
  "controlIds": [
    "<string>"
  ]
}
'

Body

application/json
frameworkInstanceId
string
required
Example:

"frm_abc123"

name
string
required
Example:

"Custom Access Control"

description
string
required
Example:

"Custom requirement for access control policies"

identifier
string
Example:

"CUSTOM-1"

controlIds
string[]

Control IDs to link to this requirement

Response

201 - undefined