To retrieve the list of skills groups with the given Stream Id.
Method | GET |
Endpoint | https://{{host}}/agentassist/api/v1/public/{{streamId}}/skill-groups |
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 |
Sample Request
curl --location --request GET\ 'https://{{host}}/agentassist/api/v1/public/{{streamId}}/skill-groups' --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
{ "results": [ { "id": "620b814ca2344f1caa8cxxxx", "name": "Account Management", "description": "Manage Account and its Settings", "color": "#f0f0f0" } ], "page": 1, "limit": 10, "hasMore": true, "totalPages": 1, "totalResults": 1 }