---
title: "Get webhooks list"
method: GET
path: "/v3/webhooks"
tags: ["Webhooks"]
---

# Get webhooks list

`GET /v3/webhooks`

Retrieves a paginated list of webhooks for the authenticated customer.

## Query parameters

- `page` integer, required
- `page_size` integer, required
- `search` string, nullable
- `is_active` boolean, nullable

## Headers

- `x-profile-id` string, uuid

## Response `200`

Webhooks retrieved successfully

- SentDmServicesEndpointsCustomerAPIv3ResponsesApiResponseOfWebhooksListV3Response — Standard API response envelope for all v3 endpoints
  - `success` boolean — Indicates whether the request was successful
  - `data` SentDmServicesEndpointsCustomerAPIv3ResponsesWebhooksListV3Response
    - `webhooks` SentDmServicesEndpointsCustomerAPIv3ResponsesWebhookV3Response[]
      - `id` string, uuid
      - `display_name` string
      - `endpoint_url` string
      - `signing_secret` string, nullable
      - `is_active` boolean
      - `event_types` string[]
      - `event_filters` object, nullable
      - `retry_count` integer
      - `timeout_seconds` integer
      - `last_delivery_attempt_at` string, date-time, nullable
      - `last_successful_delivery_at` string, date-time, nullable
      - `consecutive_failures` integer
      - `created_at` string, date-time
      - `updated_at` string, date-time, nullable
    - `pagination` SentDmServicesEndpointsCustomerAPIv3ResponsesPaginationMeta — Pagination metadata for list responses
      - `page` integer — Current page number (1-indexed)
      - `page_size` integer — Number of items per page
      - `total_count` integer — Total number of items across all pages
      - `total_pages` integer — Total number of pages
      - `has_more` boolean — Whether there are more pages after this one
      - `cursors` SentDmServicesEndpointsCustomerAPIv3ResponsesPaginationCursors — Cursor-based pagination pointers
        - `after` string, nullable — Cursor to fetch the next page
        - `before` string, nullable — Cursor to fetch the previous page
  - `error` SentDmServicesEndpointsCustomerAPIv3ResponsesApiError — Error information
    - `code` string — Machine-readable error code (e.g., "RESOURCE_001")
    - `message` string — Human-readable error message
    - `details` object, nullable — Additional validation error details (field-level errors)
    - `doc_url` string, nullable — URL to documentation about this error
  - `meta` SentDmServicesEndpointsCustomerAPIv3ResponsesApiMeta — Request and response metadata
    - `request_id` string — Unique identifier for this request (for tracing and support)
    - `timestamp` string, date-time — Server timestamp when the response was generated
    - `version` string — API version used for this request

## Other responses

- `400` — Invalid request parameters
- `401` — Unauthorized - Invalid API credentials
- `403` — Forbidden
- `500` — Internal server error

---

[API](https://skmtc.net/sentdm/apis/sent-dm-api-v3.md) · [All operations](https://skmtc.net/sentdm/apis/sent-dm-api-v3/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/sentdm/sent-dm-api-v3/versions/c451eca46f1b/schema)
