> For the complete documentation index, see [llms.txt](https://developer.securecontainerrelease.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.securecontainerrelease.com/how-to/configure-event-notifications-and-webhooks/retrieve-missing-event-notifications-using-the-api..md).

# Retrieve missing event notifications using the API.

If you missed or did not process event notifications using the callback, you can retrieve the missing events using an API call.

{% hint style="info" %}
Please note that this is not intended to build up an audit trail. If you require that functionality, please use the [audittrail](/api-reference/audittrail.md)-endpoint.
{% endhint %}

You can retrieve the events using the endpoint below:

<figure><img src="https://3962621206-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F42KNM6Ikou97oywFeUuW%2Fuploads%2FeFrr2FKlTOWkDNpBj9wo%2Fafbeelding.png?alt=media&amp;token=649f9801-26ed-4b76-847b-3009b3e4df39" alt=""><figcaption><p>server = <a href="https://URL+PORT/tmining/api/v1">https://url:port/tmining/api/v1</a></p></figcaption></figure>

#### PAGING

Parameters you can use for paging:

<table data-header-hidden><thead><tr><th width="151"></th><th></th></tr></thead><tbody><tr><td><strong>limit</strong></td><td>Maximum number of records to return.</td></tr><tr><td><strong>page</strong></td><td>Page number, to be used with limit.</td></tr><tr><td><strong>from</strong></td><td>Timestamp from which you want to receive events.</td></tr><tr><td><strong>until</strong></td><td>Timestamp to which you want to receive events.</td></tr></tbody></table>

These parameters can be used on its own or in combination with others. The output is a list of events similar to the events you receive using the callback.

#### EXAMPLE

{% code title="RESPONSE" %}

```json
[
    {
        "release": "0x597aFbB1D0E48d2caf4b544817D4c6Eb66a6F8Df",
        "event": "TRANSFER",
        "organization": "0x79F98099b2Bf4e5a47244E0cDba500F68b567ce5",
        "vat": "SS11111333",
        "when": "2024-03-01T09:32:31.492Z"
      },
      {
        "release": "0x597aFbB1D0E48d2caf4b544817D4c6Eb66a6F8Df",
        "event": "TRANSFER",
        "organization": "0x79F98099b2Bf4e5a47244E0cDba500F68b567ce5",
        "vat": "SS11111333",
        "when": "2024-03-01T09:34:21.490Z"
      },
      {
        "release": "0x597aFbB1D0E48d2caf4b544817D4c6Eb66a6F8Df",
        "event": "ENTITY_ASSIGN",
        "organization": "0x79F98099b2Bf4e5a47244E0cDba500F68b567ce5",
        "vat": "SS11111333",
        "when": "2024-03-01T09:39:52.210Z"
    }
]
```

{% endcode %}
