GET {{baseUrl}}/contact_center/users/:userId/skills?skill_category_id=<string>&skill_type=text
Get a list of skills assigned to a given user. Scopes: Rate Limit Label: contact_center_skill:read:admin
Medium
Body
PARAM
Key | Datatype | Required | Description |
skill_category_id
|
string | The skill category's ID. | |
skill_type
|
string | The skill category's type. |
HEADERS
Key | Datatype | Required | Description |
Accept
|
string |
RESPONSES
status OK
{
"next_page_token": "<string>",
"page_size": 30,
"total_records": "<integer>",
"skills": [
{
"skill_id": "<string>",
"skill_name": "<string>",
"skill_type": "<string>",
"max_proficiency_level": "<integer>",
"user_proficiency_level": "<integer>",
"skill_category_id": "<string>",
"skill_category_name": "<string>"
},
{
"skill_id": "<string>",
"skill_name": "<string>",
"skill_type": "<string>",
"max_proficiency_level": "<integer>",
"user_proficiency_level": "<integer>",
"skill_category_id": "<string>",
"skill_category_name": "<string>"
}
]
} |
ENDPOINTS