Delete a User Field Value
info
This method is available only for fields with the following types: Dropdown list (select), Related fields (hierarchy), Multi-button (multi_button)
DELETE /users/custom_fields/:field_id/options/:option_id
Example URL
https://system_domain/api/v2/users/custom_fields/123/options/456
PATH Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
field_id | number | Yes | ID of the custom field |
option_id | number | Yes | ID of the field value |
Response examples:
Response example
{
"errors": [
{
"code": "s-204",
"title": "No content",
"details": "Option with id {456} successfully deleted"
}
]
}