---
title: "List Webhooks"
method: GET
path: "/api/v1/webhooks"
tags: ["Webhooks"]
---

# List Webhooks

`GET /api/v1/webhooks`

List webhooks configured for the caller's organization.

## Query parameters

- `is_active` boolean, nullable — Filter webhooks by active status.
- `page_size` integer — Number of results to return per page.
- `cursor` string — The pagination cursor value.

## Response `200`

Successful Response

- PaginatedResponseWebhookListItemExternal
  - `cursor` string, nullable, required — Cursor value to fetch next set of items
  - `page_size` integer, required — Indicates the count of items in the response
  - `items` WebhookListItemExternal[], required — List of items in the current response
    - `webhook_id` string, uuid, required — Unique identifier of the webhook.
    - `name` string, required — Name of the webhook.
    - `url` string, required — URL the webhook is delivered to.
    - `is_enabled` boolean, required — Whether the webhook is currently enabled.
    - `for_test_connector` boolean, nullable — Whether this webhook is scoped to a demo/test connector.
    - `created_at` string, date-time, nullable
    - `last_triggered_at` string, date-time, nullable — When this webhook last fired, if ever.

## Other responses

- `401` — Missing or invalid bearer authentication credentials.
- `403` — The credentials are valid but do not permit access to this resource, e.g. a connector token used on a different API category or a model whose writes are disabled.
- `422` — Validation Error
- `429` — Rate limit exceeded.

---

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