curl --request DELETE \
--url https://api.cal.com/v2/organizations/{orgId}/attributes/{attributeId}/options/{optionId} \
--header 'Authorization: <authorization>'
{
"status": "success",
"data": {
"id": "attr_option_id",
"attributeId": "attr_id",
"value": "option_value",
"slug": "option-slug"
}
}
curl --request DELETE \
--url https://api.cal.com/v2/organizations/{orgId}/attributes/{attributeId}/options/{optionId} \
--header 'Authorization: <authorization>'
{
"status": "success",
"data": {
"id": "attr_option_id",
"attributeId": "attr_id",
"value": "option_value",
"slug": "option-slug"
}
}
value must be Bearer <token>
where <token>
is api key prefixed with cal_
The response is of type object
.
Was this page helpful?