Debriefer

List events

GET
/api/v1/events

Query Parameters

limit?integer
Default20
Range1 <= value <= 100
starting_after?string
ending_before?string
type?string|array<string>

Response Body

application/json

curl -X GET "https://loading/api/v1/events"
{
  "object": "list",
  "data": [
    {
      "id": "string",
      "organization_id": "string",
      "test_mode": true,
      "type": "interview_run.created",
      "data": {
        "property1": null,
        "property2": null
      },
      "created_at": "string",
      "object": "event"
    }
  ],
  "has_more": true,
  "next_cursor": "string"
}