---
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

---

[API](https://skmtc.net/truv/apis/truv-api.md) · [All operations](https://skmtc.net/truv/apis/truv-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/truv/truv-api/versions/6542a8962887/schema)
