Logo
Zoom Public API Documentation

List user's skills

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: contact_center_skill:read:admin

Rate Limit Label: 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>" } ] }



Curl
curl -X GET 'https://api.zoom.us/v2/contact_center/users/:userId/skills?skill_category_id=<string>&skill_type=text?skill_category_id=<string>&skill_type=text' -H 'Accept: application/json'

ENDPOINTS