Docs
Update Resource Category
PUT /resourceCategories/{assetCategoryId}
PUT
/resourceCategories/{assetCategoryId}Required 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. |
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
| Field | Type | Required | Description |
|---|---|---|---|
| assetCategoryId | Guid | Required | The ID of the asset category to update. |
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
| name | string | Required | Updated display name for the category. Must not be empty. |
| icon | string | Required | Updated icon identifier for the category. |
Response
200 OK — No response body.
Error Codes
| Code | HTTP Status | Description |
|---|---|---|
UNAUTHORIZED | 401 | Missing or invalid token. |
NOT_FOUND | 404 | Asset category not found on this event. |
BAD_REQUEST | 400 | Name is empty or invalid. |