> ## 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.

# Delete a Test Suite API

<Badge icon="arrow-left" color="gray">[Back to API List](/ai-for-service/apis/automation/api-list)</Badge>

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](/ai-for-service/apis/automation/api-introduction/#generating-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

```bash theme={null}
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

```json theme={null}
{
    "status": "Success"
}
```
