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.

Please note that this is not intended to build up an audit trail. If you require that functionality, please use the audittrail-endpoint.

You can retrieve the events using the endpoint below:

PAGING

Parameters you can use for paging:

limit

Maximum number of records to return.

page

Page number, to be used with limit.

from

Timestamp from which you want to receive events.

until

Timestamp to which you want to receive events.

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

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

Last updated