Docs
Get Resource Categories
GET /resourceCategories
GET
/resourceCategoriesRequired 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 all asset categories defined on the event. Asset categories group related asset types together (e.g., "Production", "Lighting", "Audio"). Each asset type belongs to exactly one category.
Event scoping: This endpoint does not include {eventId} in the URL. The event is determined automatically from your x-Event-Token.
Example Response
[
{
"id": "019700aa-0002-7000-0000-000000000001",
"name": "Production",
"icon": "cog"
},
{
"id": "019700aa-0002-7000-0000-000000000002",
"name": "Lighting",
"icon": "lightbulb"
}
]
Response Fields
| Field | Type | Description |
|---|---|---|
| id | Guid | The category's unique ID. |
| name | string | The category's display name. |
| icon | string | Icon identifier for the category. |
Error Codes
| Code | HTTP Status | Description |
|---|---|---|
UNAUTHORIZED | 401 | Missing or invalid token. |