Docs
Get Procurements
GET /procurements
GET
/procurementsRequired Tokens
| Field | Type | Required | Description |
|---|---|---|---|
| Bearer | Authorization: Bearer <api-key> | Optional | Your API key. Pass it as the Bearer token on every request. |
Returns all procurements for the event, each with their resources and resource details.
Response
Returns an array of procurement objects.
| Field | Type | Description |
|---|---|---|
| id | Guid | Procurement ID. |
| name | string | Procurement name. |
| description | string | Description. |
| status | string | Current procurement status. |
| resources | Resource[] | Resources associated with this procurement. |
| resources[].id | Guid | Resource ID. |
| resources[].status | string | Resource status. |
| resources[].quantity | int | Quantity. |
| resources[].type | object | Resource type (`{ id, label, icon, lineItemLabel }`). |
| resources[].subAssets | SubAsset[] | Sub-assets, each with their own `properties` array (`{ id, templatePropertyId, value }`). |
| resources[].properties | Property[] | Resource-level properties (`{ id, templatePropertyId, value }`). |