---
title: "Empty trash bin folder"
url: "https://docs.signnow.com/docs/folder/operations/delete-v2-trash"
type: "endpoint"
section: "folder"
slug: "folder/operations/delete-v2-trash"
method: "DELETE"
path: "/v2/trash"
operation_id: "delete-v2-trash"
authorization: "bearer"
---

# Empty trash bin folder

`DELETE /v2/trash`

This endpoint allows users to empty the Trash Bin folder. All documents will be permanently deleted and you won’t be able to restore them later.

## Authorization

bearer

## Responses

### 204

Trash Bin folder cleared successfully.

### 400

Invalid token response will be sent with any of cases:
- invalid token of user
- expired token of user
- empty header
- authorization = null
- authorization without value
- somesing went wrong during the clearing process.

**Example** (`Example 1`)

```json
{
  "code": 1537,
  "message": "invalid_token"
}
```

**Example** (`Invalid token`)

```json
{
  "code": 1537,
  "message": "invalid_token"
}
```

## Code Examples

> Replace `$SIGNNOW_ACCESS_TOKEN` and any `{placeholder}` values before running.

### cURL

```bash
curl -X DELETE \
  "https://api.signnow.com/v2/trash" \
  -H "Authorization: Bearer $SIGNNOW_ACCESS_TOKEN"
```

---
*Full reference: https://docs.signnow.com/docs/folder/operations/delete-v2-trash*
