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

Headers

Authorization
string
required

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

Path Parameters

orgId
number
required
attributeId
string
required

Response

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

"success"

data
object[]
required