# Get Events

This endpoint retrieves a list of events that have occurred for a customer's account, often related to webhook notifications. You can filter events by subscription_id and/or a time range query parameter (after).

It returns a paginated list of Event objects, each containing details about the event and any delivery attempts if it's a webhook event.

Endpoint: GET /api/v1/events/
Version: Version: e5dd1ef9
Security: CodeBearer

## Query parameters:

  - `subscription_id` (any)

  - `cursor` (string)

  - `limit` (integer)

  - `after` (any)

## Response 200 fields (application/json):

  - `prev_page` (any)

  - `next_page` (any)

  - `items` (array, required)

  - `items.event` (any, required)

  - `items.delivery_attempts` (array, required)

  - `items.delivery_attempts.delivery_attempt_id` (string, required)

  - `items.delivery_attempts.subscription_id` (string, required)

  - `items.delivery_attempts.success` (boolean, required)

  - `items.delivery_attempts.response_code` (integer, required)

  - `items.delivery_attempts.response_message` (any, required)

  - `items.delivery_attempts.called_at` (string, required)

  - `items.object_type` (string, required)

  - `object_type` (string)

## Response 422 fields (application/json):

  - `detail` (array)

  - `detail.loc` (array, required)

  - `detail.msg` (string, required)

  - `detail.type` (string, required)


