> For the complete documentation index, see [llms.txt](https://support.docstudio.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://support.docstudio.com/admin-panel/webhooks-callbacks/envelope-callbacks-overview/list-callbacks-api.md).

# List Callbacks (API)

To see a list of callback records for a mailbox, use the following request:

| **Method** | ***Request URL***              |
| ---------- | ------------------------------ |
| GET        | /api/v1/envelope/callback/list |

### **List callbacks**

| **URL**       |                                                                                                                                |
| ------------- | ------------------------------------------------------------------------------------------------------------------------------ |
| Method        | GET                                                                                                                            |
| request URL   | /api/v1/envelope/callback/list                                                                                                 |
| **Headers**   |                                                                                                                                |
| content-type  | application/json                                                                                                               |
| authorization | Bearer {token}, where {token} is the authorization token that the user received after successful authorization on the platform |
| mailbox       | UUID of the mailbox to which you configured callbacks                                                                          |

**RESPONSE**

In response, you get a `200` status code if the callback list is retrieved successfully, along with JSON data with callbacks.

**Response example (JSON):**

```json
[
  {
      "id": "f8c97405-9185-4998-a3c0-2c4d0edaf43b",
      "filter": {
          "label": ["string"],
          "status": ["COMPLETED"],
          "subject": "string",
          "receiveDateFrom": null,
          "receiveDateTo": null,
          "expireDateFrom": null,
          "expireDateTo": null,
          "template": ["3fa85f64-5717-4562-b3fc-2c963f66afa6"],
          "sender": ["3fa85f64-5717-4562-b3fc-2c963f66afa6"],
          "scope": ["inbox"]
      },
      "url": "string",
      "retries": 10,
      "timeout": 60000,
      "successCode": 200,
      "authType": "BASIC"
  }
]
```
