Delete Batch Test Suite API
Back to API List
Deletes a Batch Test Suite.
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 | DELETE |
| Endpoint | https://{host}/api/public/bot/{botId}/testsuite/{testSuiteName} |
| Content Type | application/json |
| Authorization | auth: {{JWT}} — See How to generate the JWT Token. |
| API Scope | App Builder: Batch Tests Management; Admin Console: Batch Tests Management |
| Parameter | Description | Required |
|---|---|---|
host | The environment URL. For example, https://platform.kore.ai | Required |
BotID | Bot ID or Stream ID, accessible under General Settings on the App Builder. | Required |
testSuiteName | Name of the test suite on the App Builder. Note: Only Custom Batch Test Suites can be deleted. | Required |
curl --location --request DELETE \
'https://{{host}}/api/public/stream/{{streamId}}/testsuite/{{testSuiteName}}' \
--header 'auth: {{YOUR_JWT_ACCESS_TOKEN}}' \
--header 'bot-language: {{language-code}}'
{
"message": "Test Suite removed successfully"
}
Was this page helpful?