Docs

Update Resource Category

PUT /resourceCategories/{assetCategoryId}

PUT/resourceCategories/{assetCategoryId}

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.

Updates the name and icon of an existing asset category. Any asset types that belong to this category are unaffected — only the category's display attributes change.

Event scoping: This endpoint does not include {eventId} in the URL. The event is determined automatically from your x-Event-Token.

Path Parameters

FieldTypeRequiredDescription
assetCategoryIdGuidRequiredThe ID of the asset category to update.

Request Body

FieldTypeRequiredDescription
namestringRequiredUpdated display name for the category. Must not be empty.
iconstringRequiredUpdated icon identifier for the category.

Response

200 OK — No response body.

Error Codes

CodeHTTP StatusDescription
UNAUTHORIZED401Missing or invalid token.
NOT_FOUND404Asset category not found on this event.
BAD_REQUEST400Name is empty or invalid.