← ClaudeAtlas

igrantio-api-webhookslisted

The Webhook group of the iGrant.io OID4VC API: create, read, update, delete and list webhooks, discover the subscribable event types and payload content types, ping a payload URL, and read recent deliveries. Covers the delivery envelope (deliveryID, webhookID, timestamp, type, data), the X-IGrant-Signature HMAC-SHA256 scheme, and the flat response shapes of ping and single-delivery read. Use when you register or debug an OWS webhook receiver, verify a signature, or check why an event did not arrive.
L3-iGrant/skills · ★ 1 · Code & Development · score 75
Install: claude install-skill L3-iGrant/skills
# iGrant.io OID4VC API - Webhook group ## When to use Use this skill when you: - register an external IT system to receive OWS events; - must know the exact event type strings to subscribe to; - verify the `X-IGrant-Signature` header on an incoming delivery; - debug a receiver that gets no events, or reads a delivery record. Base URL for demo: `https://demo-api.igrant.io`. Auth header: `Authorization: ApiKey <key>` (note the trailing space in the prefix). A bearer access token also works. The webhook operations carry only the `Webhook` tag. They serve every building block, not the OID4VC wallet alone. ## Endpoint reference | Method | Path | Purpose | Docs | | --- | --- | --- | --- | | POST | `/v2/config/webhook` | Create a webhook | [config-create-webhook](https://docs.igrant.io/docs/openid4vc-api/config-create-webhook/) | | GET | `/v2/config/webhook/{webhookId}` | Read 1 webhook | [config-read-webhook](https://docs.igrant.io/docs/openid4vc-api/config-read-webhook/) | | PUT | `/v2/config/webhook/{webhookId}` | Replace a webhook (full update) | [config-update-webhook](https://docs.igrant.io/docs/openid4vc-api/config-update-webhook/) | | DELETE | `/v2/config/webhook/{webhookId}` | Delete a webhook | [config-delete-webhook](https://docs.igrant.io/docs/openid4vc-api/config-delete-webhook/) | | GET | `/v2/config/webhooks` | List webhooks, newest first, with the last delivery result | [config-list-webhooks](https://docs.igrant.io/docs/openid4vc-api/config-list-webhooks/) | | P