FAQ Training Status API
To get the status of the FAQ training
GET https://{{host}}}/api/public/bot/{{bot_id}}/faqs/train/status?language=de
Path Parameters
Parameter | Required/Optional | Description |
---|---|---|
host | Required | Environment URL, for example, https://bots.kore.ai |
bot_id | Required | Bot ID or Stream ID. You can access it from the General Settings page of the bot. |
language | Required | The bot language, for example, “en” for English and “de” for German. |
Authorization
Invoke the API with JWT in the header with the following syntax:
auth: {{JWT}}
Response Content Type
application/json
Sample Request
curl -X GET \ 'https://{{host}}/api/public/bot/{{bot_id}}/faqs/train/status?language=en' \ -H 'auth: YOUR_JWT_ACCESS_TOKEN ' \ -H 'content-type: application/json' \