To delete a Batch Test Suite.
Method | DELETE |
Endpoint | https://{host}/api/public/bot/{botId}/testsuite/{testSuiteName} |
Content Type | application/json |
Authorization |
|
API Scope |
|
Query Parameters
Parameter | Description | Mandate |
---|---|---|
host | The environment URL. For example, https://bots.kore.ai |
Required |
BotID | Bot ID or Stream ID can be accessed under General Settings on the Bot Builder. | Required |
testSuiteName |
Name of the test suite on the Bot Builder. Note: Only Custom Batch Test Suites can be deleted. |
Required |
Sample Request
curl --location --request DELETE \ 'https://{host}/api/public/stream/{streamId}/testsuite/{testSuiteName}' \ --header 'auth: {jwt-code}' \ --header 'bot-language: {language-code}'
Body Parameters
No Body parameters are passed.
Sample Response
{ "message": "Test Suite removed successfully" }