Docs
Get Area Daysheet
GET /Areas/{areaId}/daysheet
GET
/Areas/{areaId}/daysheetRequired 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. |
| Area token | x-Area-Token | Optional | Run **Get Tokens** with `areaId` set in your environment, or call `GET /Areas/{areaId}/authorize` with your event token. |
Returns a comprehensive daysheet for the area — the event name, a full activity schedule, and all advances with their complete content. This endpoint is designed to produce a printable or exportable summary of everything happening in this area.
Requires EventAdmin permission on the event.
Path Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| areaId | Guid | Required | The ID of the area. |
Response
| Field | Type | Description |
|---|---|---|
| eventName | string | Name of the parent event. |
| schedule | array | All activities associated with this area. |
| advances | array | All advances for this area with full content. See **Get Area Advances** for the advance object shape. |
Schedule Activity Object
| Field | Type | Description |
|---|---|---|
| id | Guid | Activity ID. |
| name | string | Activity name. |
| description | string | Activity description. |
| exactLocation | string | Specific location for this activity. |
| startDateTime | DateTime | Activity start time (UTC). |
| endDateTime | DateTime | Activity end time (UTC). |