GET
/
v2
/
organizations
/
{orgId}
/
attributes
/
slugs
/
{attributeSlug}
/
options
/
assigned
curl --request GET \
  --url https://api.cal.com/v2/organizations/{orgId}/attributes/slugs/{attributeSlug}/options/assigned \
  --header 'Authorization: <authorization>'
{
  "status": "success",
  "data": [
    {
      "id": "attr_option_id",
      "attributeId": "attr_id",
      "value": "option_value",
      "slug": "option-slug",
      "assignedUserIds": [
        124,
        224
      ]
    }
  ]
}

Headers

Authorization
string
required

value must be Bearer <token> where <token> is api key prefixed with cal_

Path Parameters

orgId
number
required
attributeSlug
string
required

Query Parameters

skip
number

Number of responses to skip

take
number

Number of responses to take

assignedOptionIds
string[]

Filter by assigned attribute option ids. ids must be separated by a comma.

teamIds
number[]

Filter by teamIds. Team ids must be separated by a comma.

Response

200 - application/json
status
enum<string>
required
Available options:
success,
error
Example:

"success"

data
object[]
required