Retrieve events
Returns a list of matching events from the tenant's event database.
The categories
and types
parameters filter based on an OR logic, whilst all other parameters use an "AND" logic. For example (categories OR types) AND requestIds AND dateFrom
.
Refer to the Events registry for an inclusive list of events categories and types.
query Parameters
ids | Array of strings Query by event IDs. These can be retrieved from event details. Example: ids=e4c387e7-3e63-40f4-9a38-062aaae9ee50 |
requestIds | Array of strings Query by request IDs. These can be retrieved from event details. The response will include all the individual events that are part of the queried request. Example: requestIds=e4c387e7-3e63-40f4-9a38-062aaae9ee50 |
categories | Array of strings Query by event categories. Uses an OR operation with Example: categories=credential_compact |
types | Array of strings Query by event types. Uses an OR operation with Example: types=CREDENTIAL_COMPACT_SIGN_START |
dateFrom | string <date-time> Query by event start date and time (inclusive), in ISO-8601 format. Example: dateFrom=2023-06-01T02:45:44.087Z |
dateTo | string <date-time> Query by event end date and time (inclusive), in ISO-8601 format. Example: dateTo=2023-06-30T23:59:59.999Z |
limit | number [ 1 .. 1000 ] Default: 100 Range size of the list, default 100 Example: limit=2 |
cursor | string Starting point for the list Example: cursor=Y3JlYXRlZEF0PTIwMjAtMDgtMjVUMDY6NDY6MDkuNTEwWiZpZD1h |
A list of events
Bad Request. The request was malformed or missing required parameters.
Unauthorized. The client is not authorized to access this resource.
Forbidden. The authorization server refuses to grant the client access to the resource.
Internal Server Error. An unexpected error occurred.
- curl
- Node.js
- JavaScript
- Python
- C#
- Java
- 200
- 400
{- "data": [
- {
- "id": "0c099611-19c4-4f29-8724-6b9e5ba1ef7c",
- "type": "CREDENTIAL_COMPACT_SIGN_START",
- "timestamp": "2023-06-01T02:45:44.087Z",
- "category": "credential-compact",
- "requestId": "c1c354f9-fe2b-47d3-9d23-af6c7514a56a",
- "metadata": { },
- "data": { }
}, - {
- "id": "0c099611-19c4-4f29-8724-6b9e5ba1ef7c",
- "type": "CREDENTIAL_COMPACT_SIGN_START",
- "timestamp": "2023-06-01T02:45:44.087Z",
- "category": "credential-compact",
- "requestId": "c1c354f9-fe2b-47d3-9d23-af6c7514a56a",
- "metadata": { },
- "data": { }
}
], - "nextCursor": "Y3JlYXRlZEF0PTIwMjAtMDgtMjVUMDY6NDY6MDkuNTEwWiZpZD1hNjZmZmVhNS04NDhlLTQzOWQtODBhNC1kZGE1NWY1M2UzNmM"
}