Docs

Get Tasks Roll Up

GET /Organizations/{organizationId}/tasks

GET/Organizations/{organizationId}/tasks

Required Tokens

FieldTypeRequiredDescription
BearerAuthorization: Bearer <api-key>OptionalYour API key. Pass it as the Bearer token on every request.

Returns all tasks across every non-archived event in the organization. User display names are hydrated from the Organization API. Use this for organization-wide task views and reporting dashboards.

Requires OrganizationBasicAccess permission.

Path Parameters

FieldTypeRequiredDescription
organizationIdGuidRequiredThe organization to roll up tasks for.

Response

Returns an array of tasks across all events.

FieldTypeDescription
idGuidUnique task ID.
eventIdGuidThe event this task belongs to.
namestringTask name.
statusStatusCurrent task status.
startDateTimeDateTime| nullScheduled start, if set.
endDateTimeDateTime| nullScheduled end, if set.
descriptionstringTask description.
prioritystringTask priority level.
indexintDisplay order index.
parentIdGuid| nullParent task ID for subtasks, or `null` for top-level tasks.
phaseNamestringName of the phase this task belongs to.
assigneesAssigneesListUsers and collaborators assigned to the task.
reviewersUser[]Users assigned as reviewers.

Status

FieldTypeDescription
namestringStatus display name.
colorstringStatus color.
statestringStatus state (e.g. `NotStarted`, `InProgress`, `Complete`).

AssigneesList

FieldTypeDescription
usersUser[]Assigned users.
collaboratorsCollaborator[]Assigned collaborators.

User / Collaborator

FieldTypeDescription
idGuidUnique ID.
namestringDisplay name.