Documentation Index
Fetch the complete documentation index at: https://koreai.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Back to API List
Deletes an existing conversation test suite.
| Property | Value |
|---|
| Method | DELETE |
| Endpoint | https://{{host}}/api/public/stream/:streamId/conversation/testsuite |
| Content Type | application/json |
| Authorization | auth: {{JWT}} — See How to generate the JWT Token. |
| API Scope | App Builder: Conversation Tests Management; Admin Console: Conversation Tests Management |
Query Parameters
| Parameter | Description | Required |
|---|
host | Environment URL. For example, https://platform.kore.ai | Required |
StreamID | Stream ID, accessible under General Settings on the App Builder. | Required |
Sample Request
curl --location --request DELETE \
'https://{{host}}/api/public/stream/:streamId/conversation/testsuite' \
--header 'auth: {{jwt-token}}' \
--header 'bot-language: {{language-code}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"testSuiteNames" : ["newtestcaseconvtest"]
}'
Body Parameters
| Parameter | Description | Required |
|---|
testSuiteNames | Array containing the names of test suites to delete. | Required |
Sample Response