sumsub-manage-webhooks

Installation
SKILL.md

Sumsub — Manage Client Webhooks

Lists, retrieves, creates, updates, and disables/enables ClientWebhook event subscriptions via /resources/clientWebhooks.

Endpoints

The public API resource (ClientWebhookApiResource) exposes:

Verb Path Purpose
GET /resources/clientWebhooks List webhooks on the tenant. Returns EntityResult<ClientWebhook> ({list: {items: [...] }}). Capped at the oldest 50 server-side (getOldest50).
GET /resources/clientWebhooks/{id} Read one webhook by id. Use this to resolve a name from a known id, or to verify what landed after a write.
POST /resources/clientWebhooks Create. Body must NOT include id — server assigns it. (The model layer still does an internal upsert, but the request DTO is ClientWebhookCreateRequest without id.)
PATCH /resources/clientWebhooks Update an existing webhook (by id in body). DTO is ClientWebhookUpdateRequest.

Permission required: manageClientSettings.

Installs
62
First Seen
May 29, 2026
sumsub-manage-webhooks — sumsubstance/agent-skills