Docs
Get Collaborator Day Sheet
GET /collaborators/{collaboratorId}/daySheet
GET
/collaborators/{collaboratorId}/daySheetRequired Tokens
| Field | Type | Required | Description |
|---|---|---|---|
| Bearer | Authorization: Bearer <api-key> | Optional | Your API key. Pass it as the Bearer token on every request. |
Returns a printable day sheet for a collaborator, including their schedule, contacts, and advance form summaries.
Path Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| collaboratorId | Guid | Required | The ID of the collaborator. |
Response
| Field | Type | Description |
|---|---|---|
| eventName | string | Name of the event. |
| collaboratorName | string | Name of the collaborator. |
| schedule | Activity[] | Ordered list of scheduled activities. |
| schedule[].id | Guid | Activity ID. |
| schedule[].name | string | Activity name. |
| schedule[].description | string | Activity description. |
| schedule[].areas | ActivityArea[] | Areas associated with this activity (`{ id, name }`). |
| schedule[].exactLocation | string | Specific location string. |
| schedule[].startDateTime | DateTime | Start date/time. |
| schedule[].endDateTime | DateTime | End date/time. |
| contacts | Contact[] | Key contacts. |
| contacts[].id | Guid | Contact ID. |
| contacts[].firstName | string | First name. |
| contacts[].lastName | string | Last name. |
| contacts[].title | string | Title. |
| contacts[].email | string | Email. |
| contacts[].phone | string | Phone number. |
| advances | Advance[] | Summary of advance forms. |
| advances[].id | Guid | Advance ID. |
| advances[].name | string | Advance name. |
| advances[].area | object | Associated area (`{ id, name }`). |
| advances[].activity | object | Associated activity (`{ id, name, startTime, endTime }`). |
| advances[].questions | Question[] | Question responses (`{ id, advanceModuleId, moduleTemplateBlockId, questionTemplateId, value }`). |
| advances[].requests | Request[] | Resource request responses with asset and property details. |