---
title: "List connection webhooks"
method: GET
path: "/connections/v1/webhooks"
tags: ["Connection Webhooks"]
---

# List connection webhooks

`GET /connections/v1/webhooks`

List the caller's connection webhooks (active and paused).

## Query parameters

- `event_type` 'connection.expiry_scheduled'
- `is_active` boolean
- `limit` integer
- `offset` integer

## Response `200`

A page of connection webhooks.

- PaginatedConnectionWebhookList
  - `results` ConnectionWebhook[], required — Connection webhooks for the current page.
    - `id` string, uuid, required — Unique webhook identifier (UUID).
    - `event_type` 'connection.expiry_scheduled', required — * `connection.expiry_scheduled` - Expiry Scheduled
    - `callback_url` string, uri, required — HTTPS URL that signed events are POSTed to.
    - `is_active` boolean, required — Whether the webhook is active. Inactive webhooks do not receive events.
    - `created_at` string, date-time, required — ISO 8601 timestamp when the webhook was created.
    - `updated_at` string, date-time, required — ISO 8601 timestamp when the webhook was last updated.
  - `meta` object, required — Limit-offset pagination metadata.
    - `limit` integer, required — Number of results returned per page.
    - `offset` integer, required — Starting index for this page of results.
    - `count` integer, required — Total number of results across all pages.
  - `links` object, required — Pagination navigation links.
    - `next` string, uri, nullable, required — Link to the next page of results; null when on the last page.

## Other responses

- `400` — Validation Error: Return fields with errors.

---

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