v1

latestOpenAPI 3.0.02026-07-24102143224.1 KB
Events

Get all events

Fetches all usage events, and can be filtered as needed. Reach out to your account manager if you would like to participate in the Beta for the new Usage API.

get/v1/events

Query parameters

startDatestring

Start date for filtering events (UTC) (format: YYYY-MM-DDTHH:mm:ss)

endDatestring

End date for filtering events (UTC) (format: YYYY-MM-DDTHH:mm:ss)

ingestStartDatestring

Start ingest timestamp for filtering events (UTC) (format: YYYY-MM-DDTHH:mm:ss)

ingestEndDatestring

End ingest timestamp for filtering events (UTC) (format: YYYY-MM-DDTHH:mm:ss)

customerIdstring

Tabs Customer ID to filter events

eventTypeIdstring

Event type ID to filter events

sourcestring

Source to filter events

limitinteger

Number of events to return (default: 50, max: 1000)

cursorstring

Cursor for pagination

orderDirectionstring

Sort direction (asc/desc)

skipDeletionEventsboolean

Include deleted events in the response (default: true)

Response

Events retrieved successfully

countinteger

Total count of events

nextCursorstring

Cursor for the next page of results

hasMoreboolean

Whether there are more results available

Example response

{
  "events": [
    {
      "deleted": true
    }
  ],
  "count": 100,
  "nextCursor": "next-page-cursor",
  "hasMore": true
}