(NEW!) Event Types by Resource

COMING SOON!

This endpoint returns a distinct list of Event Types by on a given resource identifier. A resource identifier could be an Asset, Collection, or Story Board. The returned dataset will provide a distinct list of The specific event types that exist for the history of a given resource.

SecurityApiKeyAuth or BasicAuth
Request
path Parameters
resourceId
string or null

The resourceId parameter can be used to filter response results based on a specific resource in Tenovos, such as the unique id of an Asset, Collection, Story Board, etc. When used to filter event history, only event types and events specifically associated to the resource provided will be returned. This mean event types such as user.created, security.template.created, etc., will be filtered out any time this parameter is provided.

A 36-character UUID representing the resource.

Example: b84ac1dc-30ed-4741-8f8d-47ef2635950b
query Parameters
startDate
string or null

The start of the date range for event history. If not specified, the previous 12 months of events will be returned.

Format: Full datetime (YYYY-MM-DDTHH:mm:ssZ) for compatibility. Must be URL-encoded if using the full datetime.

Example: startDate=2024-10-12T15:27:59Z
endDate
string or null

The end of the date range for event history. If not specified, the previous 12 months of events will be returned.

Format: Full datetime (YYYY-MM-DDTHH:mm:ssZ) for compatibility. Must be URL-encoded if using the full datetime.

Example: endDate=2024-11-09T08:14:56Z
Responses
200

Successful Request. Event Types Retrieved Successfully.

400

One or more required parameters are missing or invalid.

401

Authentication failed (unauthorized).

403

Forbidden. You do not have permissions to perform this action, or your connection information is not correct.

503

The server is too busy to handle the request.

get/events/types/{resourceId}
Request samples
Response samples
application/json
{
  • "eventTypes": [
    ]
}