Fetch a particular skill list

This API allows you to fetch a particular skill list details.

Sample Request

Use the following method to obtain a detailed skill list ID:

curl --request GET \
     --url https://api-smartflo.tatateleservices.com/v1/dialer/skills/skill_list_id \
     --header 'accept: application/json'
     --header'authorization:eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiI0NzUzIiwiaXNzIjoiaHR0cHM6Ly9jbG91ZHBob25lLnRhdGF0ZWxlc2VydmljZXMuY29tL3Rva2VuL2dlbmVyYXRlIiwiaWF0IjoxNzM3NTQ2OTEwLCJleHAiOjIwMzc1NDY5MTAsIm5iZiI6MTczNzU0NjkxMCwianRpIjoiR0dkM1lmdEF0bEUxUGxRTSJ9.'

📘 Important!

Before we begin, note that the * sign denotes the mandatory variables in each table.


Sample Response

{
    "hasMore": false,
    "count": 2,
    "limit": 10,
    "last_seen_id": 13505,
    "data": [
        {
            "id": 13505,
            "name": "HINDI",
            "created_at": "2024-06-07T07:11:41.000000Z",
            "updated_at": "2024-06-07T07:11:41.000000Z",
            "deleted_at": null
        },....
      }
      ]

Response Variables

  • The response returned is as follows:
Variable NameDescriptionData Type
hasMoreIt defines whether there exist more records or not. For example: true or false.Boolean
countTotal number of records in current page.Integer
limitNumber of records to be fetched.Integer
last_seen_idReference ID of last skill added on the page.String
DataData of the skill list
data[].idId of the skill listString
data[].nameName of the list.String
data[].created_atTime stamp when the list was created.String
data[].updated_atTime stamp when the list was last updated.String
data[].deleted_atTime stamp at which the list was deleted from the records.String
Language
Click Try It! to start a request and see the response here!