Retrieves an event by its internal (service-generated) ID.
This endpoint is a subject of the new throttling schema (limited request rate and concurrency). Please check Events resource description for more information.
response with list of events
The response for a bad request.
The response for too many requests (concurrency or rate throttling).
const events = await client.events.retrieve([{id: 123}, {externalId: 'abc'}]);
{- "externalId": "my.known.id",
- "dataSetId": 1,
- "startTime": 1730204346000,
- "endTime": 1730204346000,
- "type": "string",
- "subtype": "string",
- "description": "string",
- "metadata": {
- "property1": "string",
- "property2": "string"
}, - "assetIds": [
- 1
], - "source": "string",
- "id": 1,
- "lastUpdatedTime": 1730204346000,
- "createdTime": 1730204346000
}