Get skill by skill ID

The GET /skills/{skillId} endpoint returns the skill matching the skill ID provided.

In this page


Most URLs in the example code use the following values:

Headers

Header parameters in Requests (User Admin API) apply to this endpoint.

Authorization scopes supported:

ScopeAccess granted
users:readEntire endpoint
users:writeEntire endpoint

Parameters

The endpoint accepts the following path parameter:

skillId

Type

Required

Example

StringTrue8e22b1fe-d2ea-403d-8c03-50eb21188e79

The skill ID of the required skill.

Requests

Request a single skill

curl -L -X GET "https://***.api.newvoicemedia.com/useradmin/skills/8e22b1fe-d2ea-403d-8c03-50eb21188e79" \
-H "Accept: application/vnd.newvoicemedia.v4+json" \
-H "Authorization: Bearer <ACCESS_TOKEN>"

Responses

Responses contain the requested skill object.

Successful response

Successful requests return a 200 Success code and the requested skill.

Example response

{
  "skillId": "c29dc40c-81d8-34bb-69b2-b93b59ccde8c",
  "skillName": "TestSkill",
  "skillDisplayId": 414536
}

where:

  • skillId. The unique ID of the skill.
  • skillName. The name of the skill.
  • skillDisplayID. The skill's unique ID.


Try it out

  

For information, see Trying out Vonage Contact Center APIs.