ML Training API
To initiate ML training of a bot
POST https://{{host}}/api/public/bot/{{bot_id}}/ml/train
Query 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. |
Authorization
Invoke the API with JWT in the header as follows:
auth: {{JWT}}
Response Content Type
application/json
Sample Request
curl -X POST \ https://{{host}}/api/public/bot/{{bot_id}}/ml/train -H 'auth: <JWT Token> \ -H 'content-type: application/json' \ -d '{}'