List all Subscribed Webhooks

‍Retrieves list of all webhook subscriptions for your program
Webhooks
List all Subscribed Webhooks
 last updated: 
November 30, 2023

Use this API to list all webhooks that you have subscribed to for your program. To see a list of all available webhooks, use List All Web Webbhook Events.

ENDPOINT

  1. GET v1/webhook

FILTERS

The table below describes various filters that can be passed as query parameters to narrow the response.

Filter Type Description
offset int start index (default = 0)
limit int number of records to return (default = 25, max = 100)
status enum webhook status


RESPONSE

  1. {
  2.     "total": 1,
  3.     "data": [
  4.         {
  5.             "id": "wbh-ab5561ce-252d-464e-92e6-0e36436be214",
  6.             "programId": "prg-b9f17601-4717-460e-bda5-9598f6f6db28",
  7.             "events": [
  8.                 "person.kyc.approved",
  9.                 "person.kyc.declined",
  10.                 "person.kyc.review",
  11.                 "business.kyb.approved",
  12.                 "business.kyb.declined",
  13.                 "business.kyb.review",
  14.                 "card.refund",
  15.                 "card.reversal",
  16.                 "card.spend",
  17.                 "card.spend.update",
  18.                 "card.declined",
  19.                 "intrabank.originated.credit",
  20.                 "intrabank.originated.debit",
  21.                 "intrabank.received.credit",
  22.                 "intrabank.received.debit",
  23.                 "ach.originated.credit",
  24.                 "ach.originated.debit",
  25.                 "ach.received.credit",
  26.                 "ach.received.debit",
  27.                 "wire.received.credit",
  28.                 "wire.originated.debit",
  29.                 "check.originated.debit",
  30.                 "check.originated.credit",
  31.                 "account.debit",
  32.                 "account.credit",
  33.                 "ach.reversal.credit",
  34.                 "ach.reversal.debit",
  35.                 "wire.reversal.debit",
  36.                 "wire.reversal.credit",
  37.                 "check.reversal.debit",
  38.                 "check.reversal.credit",
  39.                 "solidcard.originated.debit",
  40.                 "solidcard.reversal.credit"
  41.             ],
  42.             "url": "https://bc5cc9365df4e38d7bda89b7e8c8f568.m.pipedream.net",
  43.             "status": "paused",
  44.             "description": "Paused Webhook",
  45.             "createdAt": "2021-12-20T00:47:14Z",
  46.             "modifiedAt": "2021-12-20T00:50:28Z"
  47.         }
  48.     ]
  49. }