curl --request GET \
--url https://api.cal.com/v2/organizations/{orgId}/attributes/slugs/{attributeSlug}/options/assigned \
--header 'Authorization: Bearer <token>'{
"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/slugs/{attributeSlug}/options/assigned \
--header 'Authorization: Bearer <token>'{
"status": "success",
"data": [
{
"id": "attr_option_id",
"attributeId": "attr_id",
"value": "option_value",
"slug": "option-slug",
"assignedUserIds": [
124,
224
]
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
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.
success, error "success"
Show child attributes
The ID of the option
"attr_option_id"
The ID of the attribute
"attr_id"
The value of the option
"option_value"
The slug of the option
"option-slug"
Ids of the users assigned to the attribute option.
[124, 224]
Was this page helpful?