---
title: "List all webhook endpoints"
method: GET
path: "/v1/webhooks/"
tags: ["Webhooks"]
---

# List all webhook endpoints

`GET /v1/webhooks/`

The endpoint returns a list of webhooks.

## Query parameters

- `enabled` boolean
- `page` integer
- `page_size` integer

## Response `200`

- object
  - `count` integer, required
  - `next` string, uri, nullable
  - `previous` string, uri, nullable
  - `results` Webhook[], required
    - `id` string, required — Unique identifier of the webhook.
    - `name` string, required — Public name for this webhook config.
    - `webhook_url` string, uri, required — Webhook URL where event data will be sent.
    - `events` string[], required — List of events sent to this webhook URL.
    - `env_type` 'sandbox' | 'dev' | 'prod', required — Type of environment.
    - `enabled` boolean, required — Whether the webhook is active.
    - `created_at` string, date-time, required — Timestamp when the webhook was created.
    - `updated_at` string, date-time, required — Timestamp when the webhook was updated last time.

## Other responses

- `401` — HTTP 401 Unauthorized
- `403` — HTTP 403 Forbidden
- `404` — HTTP 404 Not Found

## Changes

- **2026-08-15** `16345eb80970` — 1 warning
  - added the new `order-batch-completed` enum value to the `results/items/events/items/` response property for the response status `200`
- **2026-07-26** `e58688835e25` — 2 warning, 1 info
  - added the new `certification-completed` enum value to the `results/items/events/items/` response property for the response status `200`
  - added the new `order-finalized` enum value to the `results/items/events/items/` response property for the response status `200`
  - added the non-success response with the status `404`

[Change history](https://skmtc.dev/truv/apis/truv-api/changes/v1/webhooks/get.md)

---

[API](https://skmtc.dev/truv/apis/truv-api.md) · [All operations](https://skmtc.dev/truv/apis/truv-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/truv/truv-api/revisions/d7195c30b6b1/schema)
