v49

latestOpenAPI 3.0.0raw.githubusercontent.com2026-06-294147162.3 KB
Events

List Events

List all events corresponding to your Chariot account.

get/v1/events

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.

category'grant.created' | 'grant.updated' | 'unintegrated_grant.created' | 'unintegrated_grant.updated' | 'disbursement.created' | 'disbursement.updated' | 'inbound_transfer.created' | 'inbound_transfer.updated'

The category of the event. This is useful for filtering events.

Filter Events for those with the specified category.

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": "203c4e56-5c39-4a66-abcd-2ec8af99a1b9",
      "created_at": "2024-01-19T18:48:56.37Z",
      "associated_object_id": "4d06d393-1f14-46cf-b02d-8db17d7ed06a",
      "associated_object_type": "grant"
    }
  ]
}