Events

Retrieve a single event

get/events/{identifier}

Path parameters

identifierstring required

The event ID (UUID) or event name.

Response

OK

objectstring

Type of the response object.

idstring uuid

The event ID.

namestring

The event name.

schemaobject nullable

A flat key/type map defining the event payload schema. Supported types are string, number, boolean, and date.

created_atstring

The date and time the event was created.

updated_atstring nullable

The date and time the event was last updated.

Example response

{
  "object": "event",
  "created_at": "2023-10-06 23:47:56.678+00",
  "updated_at": "2023-10-06 23:47:56.678+00"
}

Changes