# List Callbacks (API)​

To see a list of callback records for a mailbox, you should 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 authorisation token that which user received after successful authorisation on the platform |
| mailbox       | UUID of the mailbox to which you configured callbacks                                                                           |

**RESPONSE**

In response, you get a 200 status code (in case of successful callback list retrieving) and JSON data with callbacks

**Response example (JSON):**

```markup
[
  {
      "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"
  }
] 
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://support.docstudio.com/admin-panel/webhooks-callbacks/envelope-callbacks-overview/list-callbacks-api.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
