Docs
Get Activity Resources
GET /Activities/{activityId}/resources
GET
/Activities/{activityId}/resourcesRequired 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. |
Returns the procurement resources associated with the activity — the physical/rented assets and their fulfillment state. Each resource carries its procurement, resource type, owning collaborator, quantities, order lines, requests, and any schedule blocks (time windows) tied to it.
Requires EventBasicAccess on the event.
Path Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| activityId | Guid | Required | The ID of the activity. |
Response
Returns an array of resources. Each resource includes:
| Field | Type | Description |
|---|---|---|
| id | Guid | Resource ID. |
| status | string | Fulfillment status of the resource. |
| quantity | int | Quantity required. |
| startDateTime | DateTimeOffset | Resource window start, if set. |
| endDateTime | DateTimeOffset | Resource window end, if set. |
| procurement | object | Owning procurement (id, name, description, status). |
| type | object | Resource type (id, label, icon, lineItemLabel). |
| collaborator | object | Owning collaborator (id, name). |
| subAssets | array | Sub-assets and their properties. |
| properties | array | Resource property values (id, templatePropertyId, value). |
| orderLines | array | Order lines fulfilling the resource (id, orderId, orderName, quantity). |
| requests | array | Linked request IDs. |
| scheduleBlocks | array | Schedule blocks for the resource (id, type, name, start/end, area, collaborator, notes, requests). |