Docs

Get Resource Categories

GET /resourceCategories

GET/resourceCategories

Required Tokens

FieldTypeRequiredDescription
BearerAuthorization: Bearer <api-key>OptionalYour API key. Pass it as the Bearer token on every request.
Event tokenx-Event-TokenOptionalRun **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

FieldTypeDescription
idGuidThe category's unique ID.
namestringThe category's display name.
iconstringIcon identifier for the category.

Error Codes

CodeHTTP StatusDescription
UNAUTHORIZED401Missing or invalid token.