v1
latestOpenAPI 3.0.22026-07-2441902.6 MBAttributes API
Create a New Attribute
Creates a new routing attribute in the account. Use this endpoint to programmatically add attributes as part of a configuration workflow or integration with an external workforce management system. For team-scoped users, only teams within their scope can be associated with the attribute. The attribute name, active status, category, proficiency type, and default proficiency are required fields.
post/attributes
Request body
Response
The created Attribute.
Example response
{
"id": "123e4567-e89b-12d3-a456-426655440000",
"name": "Attribute 1",
"active": true,
"category_id": "987e4567-jqw2-23b2-a456-122315440000",
"category_name": "Category 1",
"proficiency": "five_stars_scale",
"default_proficiency": 60,
"users_count": 10,
"flows_count": 0,
"team_ids": [
"f3b8d0ea-d40d-417c-ac9c-0931e7fcb8aa"
],
"_links": {
"self": {
"href": "http://api-docs.talkdesk.org/attributes/123e4567-e89b-12d3-a456-426655440000"
},
"attributes": {
"href": "http://api-docs.talkdesk.org/attributes"
}
}
}