Fetch metadata for KC Bots from your PX Subscription. The API provides you with the summary of basic information of each KC Bot that makes it easy to work with specific data.
Examples:
| URI | Results |
|---|---|
| GET /v1/kcbot?pageSize=100 | Get first 100 KcBots. |
| GET /v1/kcbot?pageSize=100&pageNumber=1 | Get next 100 KcBots. |
| GET /v1/kcbot?productId=1234LPSWUBFW | Get KcBots of product 1234LPSWUBFW. |
Important: The default pageSize on list calls is 200. The pageSize can be changed by adding a pageSize parameter to the URL (i.e. /v1/kcbot?pageSize=100) with a max pageSize=500.
To fetch a particular page, use the pageNumber parameter (zero based)
GET
/v1/kcbot
curl \
--request GET 'https://api.aptrinsic.com/v1/kcbot'
Response examples (200)
{
"kcList": [
{
"createdBy": {
"id": "string",
"name": "string"
},
"createdDate": 42,
"defaultLanguage": "string",
"description": "string",
"environments": [
"string"
],
"id": "string",
"languages": [
{
"languageCode": "string",
"translated": true
}
],
"modifiedBy": {
"id": "string",
"name": "string"
},
"modifiedDate": 42,
"name": "string",
"priority": 42,
"productId": "string",
"productName": "string",
"status": "string"
}
],
"pageNumber": 42,
"isLastPage": true
}