curl --request GET \
--url https://api.cal.com/v2/organizations/{orgId}/attributes \
--header 'Authorization: <authorization>'{
"status": "success",
"data": [
{
"id": "attr_123",
"teamId": 1,
"type": "TEXT",
"name": "Attribute Name",
"slug": "attribute-name",
"enabled": true,
"usersCanEditRelation": true
}
]
}curl --request GET \
--url https://api.cal.com/v2/organizations/{orgId}/attributes \
--header 'Authorization: <authorization>'{
"status": "success",
"data": [
{
"id": "attr_123",
"teamId": 1,
"type": "TEXT",
"name": "Attribute Name",
"slug": "attribute-name",
"enabled": true,
"usersCanEditRelation": true
}
]
}value must be Bearer <token> where <token> is api key prefixed with cal_
Maximum number of items to return
1 <= x <= 250Number of items to skip
x >= 0success, error "success"
Show child attributes
The ID of the attribute
"attr_123"
The team ID associated with the attribute
1
The type of the attribute
TEXT, NUMBER, SINGLE_SELECT, MULTI_SELECT The name of the attribute
"Attribute Name"
The slug of the attribute
"attribute-name"
Whether the attribute is enabled and displayed on their profile
true
Whether users can edit the relation
true
Was this page helpful?