---
title: "Get Webhooks"
method: GET
path: "/notification/v1/connect/webhook/subscriptions"
tags: ["Webhooks"]
---

# Get Webhooks

`GET /notification/v1/connect/webhook/subscriptions`

Retrieves all registered webhooks. This endpoint allows partners to get a list of all webhooks that have been registered. Each webhook in the list includes details such as the unique identifier, event names that trigger the webhook, the endpoint URL, the signing key (if provided), the client ID, the protocol used, and timestamps for when the webhook was created and last updated. This information helps partners manage and audit their webhook configurations.

## Response `200`

List of webhooks.

- object
  - `data` WebhookResponse[]
    - `id` string — The unique identifier for the webhook.
    - `event_names` string[] — The type of events triggering the webhook, based on the `event_names` defined in the request.
    - `endpoint` string — The URL where the webhook sends POST requests.
    - `signing_key` string, nullable — A secret key used for securing the webhook. This key is optional and may be `null` if not required.
    - `client_id` string — The client-specific identifier for the webhook.
    - `protocol` string — The protocol used for the webhook communication, defined in the `protocol` field of the request.
    - `created_at` string, date-time — The timestamp when the webhook was created.
    - `updated_at` string, date-time — The timestamp when the webhook was last updated.
    - `created_by` string — The identifier of the user or service that created the webhook.
    - `updated_by` string — The identifier of the user or service that last updated the webhook.
  - `msg` string — A message indicating the status of the response.

## Other responses

- `401` — Unauthorized request.
- `500` — Server error.

---

[API](https://skmtc.net/eka/apis/eka-developer-apis.md) · [All operations](https://skmtc.net/eka/apis/eka-developer-apis/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/eka/eka-developer-apis/revisions/9ea23456f722/schema)
