Enable an Existing Language API
Back to API List
Enables an existing language for an AI Agent.
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
| Property | Value |
|---|---|
| Method | POST |
| Endpoint | https://{{host}}/api/{{version-Id}}/public/bot/{{botId}}/language/status |
| Content Type | application/json |
| Authorization | auth: {{JWT}} — See How to generate the JWT Token. |
| API Scope | App Builder: Language Configuration; Admin Console: Language Settings > Language Management |
| Parameter | Description | Required |
|---|---|---|
host | The environment URL. For example, https://platform.kore.ai | Required |
curl -X POST \
'https://{{host}}/api/{{version-Id}}/public/bot/{{botId}}/language/status' \
--header 'Content-Type: application/json' \
--header 'auth: {{YOUR_JWT_ACCESS_TOKEN}}' \
--data '{
"language" : "",
"enable": true
}'
| Parameter | Description | Required |
|---|---|---|
language | The language code of the language to enable. | Required |
enable | Set to true to enable the language. | Required |
"Enabled Spanish language successfully"
Was this page helpful?