Docs

Get Department Tasks Roll Up

GET /Organizations/{organizationId}/departments/{departmentId}/tasks

GET/Organizations/{organizationId}/departments/{departmentId}/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 that are assigned to the specified department. User display names are hydrated from the Organization API. Use this for department-scoped task views and reporting dashboards.

Requires OrganizationBasicAccess permission.

Path Parameters

FieldTypeRequiredDescription
organizationIdGuidRequiredThe organization to roll up tasks for.
departmentIdGuidRequiredThe department to filter tasks by.

Response

Returns an array of tasks filtered to the specified department 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.
assigneesAssigneesListCrew members and collaborators assigned to the task.
reviewersCrew[]Crew members assigned as reviewers.
eventAttributesEventAttr[]Custom attribute values for this task.

Status

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

AssigneesList

FieldTypeDescription
crewCrew[]Assigned crew members.
collaboratorsCollaborator[]Assigned collaborators.

Crew

FieldTypeDescription
idGuidCrew member ID.
namestringDisplay name.
connectedUserIdGuid| nullLinked organization user ID, if connected.

Collaborator

FieldTypeDescription
idGuidCollaborator ID.
namestringDisplay name.

EventAttr

FieldTypeDescription
attributeIdGuidThe custom attribute definition ID.
valuestringThe value set for this attribute on the task.