To retrieve the details of a particular skill with the given Stream Id, Skill Group Id, and Skill Id.
| Method | GET |
| Endpoint | https://{{host}}/agentassist/api/v1/public/{{streamId}}/skill-groups/{{skillGroupId}}/skills/{{skillId}} |
| Content Type | application/json |
| Authorization | auth: {{JWT}}See How to generate the JWT Token. |
| API Scope | SmartAssist Analytics |
Path Parameters
| Parameter | Description | Type |
|---|---|---|
| host | Environment URL, for example, https://smartassist.kore.ai | String, Required |
| BotId | BotId or StreamId. You can access it from the General Settings page of the bot. | String, Required |
| skillGroupId | Id of the Skill Group. | String, Required |
| skillId | Id of the Skill. | String, Required |
Sample Request
curl --location --request GET\
'https://{{host}}/agentassist/api/v1/public/{{streamId}}/skill-groups/{{skillGroupId}}/skills/{{skillId}}'
--header 'auth: {jwt-code}' \
--header 'accountId: {{accountId}}'
--header 'Content-Type: application/json' \
Headers
- accountId (required): The account ID associated with the API request.
- auth (required): JWT token for authentication.
Sample Response
{
"status": "ACTIVE",
"name": "Account Management23",
"description\"": "Manage Account",
"skillGroupId": "606ac00ad75b272c78a15a07",
"agents": [
{
"userId": "u-c7b23565-7e83-5099-8f26-f0a41a969f1a",
"skillId": "607046a3630c9f077af51802",
"createdBy": "u-c7b23565-7e83-5099-8f26-f0a41a969f1a",
"orgId": "o-da05dbea-6573-5399-ba58-22035a3122f3",
"proficiencyLevel": "high",
"createdAt": "2021-04-09T12:20:51.246Z",
"updatedAt": "2021-04-09T12:20:51.246Z",
"id": "607046a3630c9f077af51803",
"firstName": "Ravi",
"lastName": "Kumar",
"emailId": "ravi2@kore.com"
}
],
"createdBy": "u-c7b23565-7e83-5099-8f26-f0a41a969f1a",
"createdAt": "2021-04-09T12:20:51.216Z",
"updatedAt": "2021-04-09T12:20:51.216Z",
"id": "607046a3630c9f077af51802"
}