v49

latestOpenAPI 3.0.0raw.githubusercontent.com2026-06-294147162.3 KB
Event Subscriptions

List Event Subscriptions

List all event subscriptions corresponding to your Chariot account.

get/v1/event_subscriptions

Query parameters

limitinteger

Limit the size of the list that is returned. The default (and maximum) is 100 objects.

cursorstring

The cursor to use for pagination. If not set, the first page of results will be returned.

Response

The response for Events.list

nextPageTokenstring

A cursor token to use to retrieve the next page of results by making another API call to the same endpoint with the same parameters (only changing the pageToken). If specified, then more results exist on the server that were not returned, otherwise no more results exist on the server.

Example response

{
  "results": [
    {
      "id": "4d06d393-1f14-46cf-b02d-8db17d7ed06a",
      "created_at": "2024-01-14T12:48:56.37Z",
      "url": "https://example.com/webhook"
    }
  ]
}