Docs
Get Tasks
GET /tasks
GET
/tasksRequired 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 tasks for the authenticated event, including status, phase, assignees, reviewers, custom attribute values, and dependency graph edges. Tasks may be nested via parentId to form a hierarchy. System-managed tasks include a source and sourceType indicating which subsystem created them.
Requires EventProjectManagementAdmin permission on the event.
Response
Returns an array of tasks.
| Field | Type | Description |
|---|---|---|
| id | Guid | Unique task ID. |
| name | string | Task name. |
| statusId | Guid| null | ID of the current task status, or `null`. |
| startDateTime | DateTime| null | Scheduled start, if set. |
| endDateTime | DateTime| null | Scheduled end, if set. |
| description | string | Task description. |
| priority | string | Priority level. |
| index | int | Display order within its siblings (1-based). |
| parentId | Guid| null | Parent task ID for subtasks, or `null` for top-level. |
| phaseId | Guid| null | Phase this task belongs to, or `null`. |
| source | string| null | Subsystem that created this task (`null` for user-created). |
| sourceType | string | Type within the source subsystem. |
| sourceEntityId | Guid| null | Source entity ID, if system-managed. |
| sourceContextId | Guid| null | Source context ID, if system-managed. |
| assignees | AssigneesList | Users and collaborators assigned to the task. |
| reviewers | User[] | Users assigned as reviewers. |
| attributes | Attribute[] | Custom attribute values on the task. |
| dependents | Guid[] | IDs of tasks that depend on this task. |
| dependsOn | Guid[] | IDs of tasks this task depends on. |
AssigneesList
| Field | Type | Description |
|---|---|---|
| users | User[] | Assigned users (ID only). |
| collaborators | Collaborator[] | Assigned collaborators (ID only). |
User / Collaborator
| Field | Type | Description |
|---|---|---|
| id | Guid | Unique ID. |
Attribute
| Field | Type | Description |
|---|---|---|
| attributeId | Guid | The attribute definition ID. |
| value | string | The value set for this task. |