---
title: "List Webhook Events"
method: GET
path: "/v1/webhook-events"
tags: ["Webhook Events"]
---

# List Webhook Events

`GET /v1/webhook-events`

List all webhook events

## Scopes

| Category | Read only Scope | Write only Scope (read access implicit) |
|---|---|---|
| Manage company resources (`company_admin`) | View webhooks (`webhook:read`) | Manage webhooks (`webhook:write`) |

## Query parameters

- `event_type` string
- `successfully_delivered` boolean
- `company_id` string
- `before` string
- `after` string
- `order` 'asc' | 'desc'
- `sort_by` 'first_triggered_at'
- `page` integer
- `page_size` integer

## Response `200`

Success

- ListWebhookEventsResponse — Response schema listing many webhook_events
  - `data` object
    - `current_page` integer — The current page among all of the total_pages
    - `total_count` integer — The total number of records in the result
    - `total_pages` integer — The total number of pages the user can go through
    - `webhook_events` WebhookEvent[]
      - `company_id` string, required — The unique identifier (UUID) of the company this event belongs to.
      - `event_type` string, required — The type of event that was triggered (e.g., "timesheet.created", "employment.activated").
      - `first_triggered_at` string, required — The timestamp when this event was first triggered.
      - `id` string, required — The unique identifier (UUID) of the webhook event.
      - `last_triggered_at` string, required — The timestamp of the most recent delivery attempt for this event.
      - `successfully_delivered` boolean, required — Whether the webhook event was successfully delivered to the callback URL (received a 2XX response).

## Other responses

- `401` — Unauthorized
- `404` — Not Found
- `422` — Unprocessable Entity

---

[API](https://skmtc.net/remote-com/apis/remote.md) · [All operations](https://skmtc.net/remote-com/apis/remote/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/remote-com/remote/revisions/7e6a0c61ac82/schema)
