curl --request GET \
--url https://api.cal.com/v2/organizations/{orgId}/attributes/{attributeId}/options/assigned \
--header 'Authorization: <authorization>'
{
"status": "success",
"data": [
{
"id": "attr_option_id",
"attributeId": "attr_id",
"value": "option_value",
"slug": "option-slug",
"assignedUserIds": [
124,
224
]
}
]
}
curl --request GET \
--url https://api.cal.com/v2/organizations/{orgId}/attributes/{attributeId}/options/assigned \
--header 'Authorization: <authorization>'
{
"status": "success",
"data": [
{
"id": "attr_option_id",
"attributeId": "attr_id",
"value": "option_value",
"slug": "option-slug",
"assignedUserIds": [
124,
224
]
}
]
}
value must be Bearer <token>
where <token>
is api key prefixed with cal_
Number of responses to skip
Number of responses to take
Filter by assigned attribute option ids. ids must be separated by a comma.
Filter by teamIds. Team ids must be separated by a comma.
The response is of type object
.