get https://api-smartflo.tatateleservices.com/v1/dialer/skills/
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'
š 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 following:
Variable Name | Description | Data Type |
---|---|---|
hasMore | It defines whether there exist more records or not. For example: true or false. | Boolean |
count | Total number of records in current page. | Integer |
limit | Number of records to be fetched. | Integer |
last_seen_id | Reference ID of last user in the page. | String |
data[].id | Id of the lead. | String |
data[].list_id | ID of the list fetched. | String |
data[].added_by | Client ID of who added this lead to the list. | String |
data[].number | Number of the lead. | String |
data[].type | Type of data for eg: number or lead_id. | String |
data[].created_at | Time stamp when the list was created. | String |