Skip to main content
POST
/
v1
/
frameworks
/
{id}
/
requirements
/
link
Link (clone) existing requirements from another framework into this one
curl --request POST \
  --url http://localhost:3333/v1/frameworks/{id}/requirements/link \
  --header 'Content-Type: application/json' \
  --data '
{
  "requirementIds": [
    "<string>"
  ]
}
'

Path Parameters

id
string
required

Body

application/json
requirementIds
string[]
required

IDs of existing FrameworkEditorRequirement rows to clone into this framework

Response

201 - undefined