Docs
Get Constraints
GET /constraints
GET
/constraintsRequired Tokens
| Field | Type | Required | Description |
|---|---|---|---|
| Bearer | Authorization: Bearer <api-key> | Optional | Your API key. Pass it as the Bearer token on every request. |
| Event token | x-Event-Token | Optional | Run **Get Tokens** in the Authorization folder, or call `GET /Events/{eventId}/authorize` manually. |
Returns all constraints defined for the event. Constraints represent blockers or dependencies that affect one or more tasks. A constraint of type Task links to a specific blocking task via constrainedByTaskId.
Requires EventProjectManagementAdmin permission on the event.
Response
Returns an array of constraints.
| Field | Type | Description |
|---|---|---|
| id | Guid | Unique constraint ID. |
| name | string | Constraint name. |
| description | string | Details about the constraint. |
| type | string | Constraint type (e.g. `Task` for task-based blockers). |
| status | string | Current resolution status. |
| constrainedByTaskId | Guid| null | The blocking task ID (for `Task` type), or `null`. |
| constrainedTaskIds | Guid[] | IDs of tasks affected by this constraint. |