> For the complete documentation index, see [llms.txt](https://3commas.gitbook.io/3commas-official-api-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://3commas.gitbook.io/3commas-official-api-docs/dca-bot/delete-dca-bot.md).

# Delete DCA Bot

<br>

**Description:** Deletes an existing DCA Bot using its ID<br>

**Permission:** BOTS\_WRITE\
**Security** SIGNED\ <br>

> <mark style="color:green;">**`POST`**</mark>
>
> `/ver1/bots/{bot_id}/delete`

<br>

## Path Parameter<br>

**bot\_id**     `integer`     <mark style="color:orange;">required</mark>\
Unique 3Commas ID for this DCA Bot entity

<br>

## Response Parameters<br>

```
NONE
```

<br>

## Example Request<br>

```json
POST /ver1/bots/12345678/delete
```

<br>

## Example response and errors<br>

<details>

<summary>Status: 201 Created</summary>

<br>

```json
true
```

</details>

<details>

<summary>Status: 403 Forbidden</summary>

<br>

```json
{
    "error": "Forbidden"
}
```

</details>

<details>

<summary>Status: 404 Not Found</summary>

<br>

```
{
    "error": "not_found",
    "error_description": "Not Found"
}
```

</details>
