List all events

GET /api/v1/events

Returns a list of events with pagination (20 events per page). The events are sorted by creation date, with the most recent event appearing first.

Query parameters

  • limit integer

    A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.

    Minimum value is 1, maximum value is 100. Default value is 10.

Responses

  • 200 application/json

    Returns an array of event objects. If no more events are available, the resulting array will be empty.

    Hide response attributes Show response attributes object
    • created integer(int64)

      Time at which the object was created. Measured in seconds since the Unix epoch.

    • data object

      Object containing data associated with the event.

    • id object
    • type string

      Description of the event (e.g., application.started or policy.active).

GET /api/v1/events
curl \
 --request GET 'https://api.1099policy.com/api/v1/events'
Response examples (200)
{
  "$ref": "#/components/examples/events"
}