cURL
curl --request GET \ --url http://localhost:3000/api/models/{modelId}/requirements/{requirementId} \ --header 'Authorization: Bearer <token>'
{ "id": "<string>", "level": "<string>", "name": "<string>", "statement": "<string>", "systems": [ "<string>" ], "functions": [ "<string>" ], "status": "In Progress", "constraints": [ { "limit": 123, "operator": ">", "variableId": "<string>", "id": "<string>", "type": "attribute" } ], "parentId": "<string>", "pendingState": "add", "type": "none", "autoUpdate": true, "info": { "comment": "<string>", "reference": { "file": "<string>", "pageNumber": 123, "text": "<string>" } }, "schemaVersion": 1 }
Retrieves a specific requirement by ID
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
ID of the model
ID of the requirement
Requirement details
The response is of type object.
object