Docs

Get Collaborator Dashboard

GET /collaborators/{collaboratorId}/dashboard

GET/collaborators/{collaboratorId}/dashboard

Required Tokens

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

Returns a summary dashboard for a collaborator, including contacts, scheduled activities, deliverables, incomplete crew, and tasks.

Path Parameters

FieldTypeRequiredDescription
collaboratorIdGuidRequiredThe ID of the collaborator.

Response

FieldTypeDescription
contactsContact[]Key contacts associated with the collaborator.
contacts[].idGuidContact ID.
contacts[].firstNamestringFirst name.
contacts[].lastNamestringLast name.
contacts[].titlestringJob title.
contacts[].emailstringEmail address.
contacts[].phoneNumberstringPhone number.
activitiesActivity[]Scheduled activities for the collaborator.
activities[].idGuidActivity ID.
activities[].namestringActivity name.
activities[].startDateTimeDateTimeStart date/time.
activities[].endDateTimeDateTimeEnd date/time.
deliverablesDeliverable[]Pending deliverables.
deliverables[].idGuidDeliverable ID.
deliverables[].partitionKeyGuidPartition key.
deliverables[].namestringDeliverable name.
deliverables[].dueDateDateTimeDue date.
deliverables[].statusstringCurrent status.
incompleteCrewContact[]Crew members with incomplete profiles. Same shape as `contacts`.
tasksTask[]Tasks assigned to or involving this collaborator.
tasks[].idGuidTask ID.
tasks[].namestringTask name.
tasks[].statusIdGuid| nullCurrent status ID.
tasks[].startDateTimeDateTime| nullStart date/time.
tasks[].endDateTimeDateTime| nullEnd date/time.
tasks[].descriptionstringTask description.
tasks[].prioritystringPriority level.
tasks[].indexintSort index.
tasks[].parentIdGuid| nullParent task ID if nested.
tasks[].phaseIdGuid| nullPhase ID.
tasks[].assigneesobjectAssigned users and collaborators.
tasks[].assignees.usersUser[]Assigned users (`{ id }`).
tasks[].assignees.collaboratorsCollab[]Assigned collaborators (`{ id }`).
tasks[].reviewersUser[]Reviewer users (`{ id }`).
tasks[].attributesAttribute[]Custom attribute values (`{ attributeId, value }`).
tasks[].dependentsGuid[]IDs of tasks that depend on this one.
tasks[].dependsOnGuid[]IDs of tasks this one depends on.