To disable an existing language for a virtual assistant.
Method | POST |
Endpoint |
|
Content Type | application/json |
Authorization |
|
API Scope |
|
Path Parameters
Parameter | Description | Mandate |
---|---|---|
host | The environment URL. For example, https://bots.kore.ai |
Required |
Sample Request
curl -X POST \
https://{{host}}/api/public/users \
-H 'Content-Type: application/json' \
-H 'auth: YOUR_JWT_ACCESS_TOKEN' \
-d '[
{
“language” :
“enable”: false
}]
Body Parameters
Parameter | Description | Mandate |
---|---|---|
language | The language code of the language to be disabled. | Required |
enable | The enable configuration is set to False. | Required |
Sample Response
[
{
"status": "success"
}
]