COMING SOON!
This endpoint returns a complete history of all events
assetId | string or null The assetId parameter can be used to filter response results based on a specific Asset in Tenovos. When used to filter event history, only event types and events specifically associated to the Asset ID
provided will be returned. This mean event types such as A 36-character UUID representing the asset. Example: assetId=b84ac1dc-30ed-4741-8f8d-47ef2635950b |
userId | string or null The userId parameter can be used to filter response results based on a specific User in Tenovos. When used to filter event history, only events specifically associated to the User ID provided will be returned. A 36-character UUID representing the User. Example: userId=cd0caff5-2756-4d7c-a43d-a926a81fa9b8 |
eventType | string or null The event type parameter can be used to filter response results based on the type of event. For a full list of available types, please refer to the Event Types page for an up-to-date list of available values. Example: eventType=asset.created |
startDate | string or null The start of the date range for event history. Format: ISO 8601 date (YYYY-MM-DD) or full datetime (YYYY-MM-DDTHH:mm:ssZ) for compatibility. Must be URL-encoded if using the full datetime. Example: startDate=2024-10-12 |
endDate | string or null The end of the date range for event history. Format: ISO 8601 date (YYYY-MM-DD) or full datetime (YYYY-MM-DDTHH:mm:ssZ) for compatibility. Must be URL-encoded if using the full datetime. Example: endDate=2024-12-12 |
pageSize | number or null The pageSize parameter can be used to limit the response results for each request. When used for event history, the minimum recommended pageSize is Example: pageSize=500 |
cursor | string or null Provides the cursor for the next result set. Can be either the response value for Example: cursor=eyJvZmZzZXQiOjIwMH0 |
Successful Request. Event Types Retrieved Successfully.
One or more required parameters are missing or invalid.
Authentication failed (unauthorized).
Forbidden. You do not have permissions to perform this action, or your connection information is not correct.
The server is too busy to handle the request.
{- "total": 798054,
- "pageSize": 100,
- "nextCursor": "eyJvZmZzZXQiOjIwMH0",
- "prevCursor": "kmFvYmBzZXQiOjIwNJ0",
- "events": [
- {
- "eventType": "asset.created",
- "id": "some-event-type-d231cf1d-86b2-436e-95de-b745c39d2ed5",
- "time": "2024-05-09T17:55:28.462Z",
- "user": {
- "id": "7d675ef0-f423-11e9-8071-89c0c405214e",
- "firstName": "Erlich",
- "lastName": "Bachman"
}
}
]
}