Docs
Update Attribute Option
PUT /eventAttributes/{attributeId}/options/{optionId}
PUT
/eventAttributes/{attributeId}/options/{optionId}Required Tokens
| Field | Type | Required | Description |
|---|---|---|---|
| Bearer | Authorization: Bearer <api-key> | Optional | Your API key. Pass it as the Bearer token on every request. |
| Organization token | x-Organization-Token | Optional | Run **Authorize Organization** in the Authorization folder. |
Updates an option on a Select or MultiSelect attribute. Renaming the value rewrites it across all stored values. Recoloring is free. Set isArchived to true to hide the option from new picks (existing values keep resolving), or false to unarchive it.
Returns 200 OK.
Requires OrganizationAdmin permission.
Path Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| attributeId | Guid | Required | The attribute that owns the option. |
| optionId | Guid | Required | The option to update. |
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
| value | string | Required | Option value. |
| color | string | Required | Display color. |
| isArchived | bool | Required | Whether the option is archived. |