Kobble
  1. Webhooks
Kobble
  • Introduction
  • Authorization
    • Authorization
    • Get access token
      POST
  • Beneficiaries
    • List all beneficiaries
      GET
    • Get beneficiary by ID
      GET
    • Create beneficiary
      POST
    • Update beneficiary
      PUT
  • Cards
    • Cards API
    • Get all cards
      GET
    • Create a new card
      POST
    • Get card by ID
      GET
    • Update card status
      PATCH
    • Replace or renew card
      POST
    • Generate card secret
      POST
  • Card Programs
    • Card Programs API
    • Get all programs
      GET
    • Create a new program
      POST
    • Get program by ID
      GET
  • Clients
    • Clients API
    • Get all clients
      GET
    • Get client by ID
      GET
    • Create a new client
      POST
    • Update client status
      PATCH
  • Endusers
    • Endusers API
    • Get all endusers
    • Create a new enduser
    • Get enduser by ID
  • Transactions
    • Transactions API
    • Get all transactions
    • Create a transaction
    • Get transaction by ID
    • Create manual credit transaction
    • Create manual debit transaction
  • Wallets
    • Wallets API
    • Get all wallets
    • Create a new wallet
    • Get wallet by ID
    • Update wallet
  • Relays
    • Relays API
    • Create subscription
  • Webhooks
    • Webhooks API
    • Get all webhooks
      GET
    • Create a webhook
      POST
    • Delete a webhook
      DELETE
  1. Webhooks

Get all webhooks

Developing
GET
/customer/v1/webhooks/subscriptions

Request

Header Params
Authorization
string 
optional
Example:
Bearer {{access_token}}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/customer/v1/webhooks/subscriptions' \
--header 'Authorization: Bearer {{access_token}}'

Responses

🟢200Success
application/json
Body
array of:
id
string <uuid>
required
The unique identifier of the webhook.
client_id
string <uuid>
required
The client ID associated with the webhook.
url
string 
required
The webhook url
created_at
string <date-time>
required
The date and time the card was created.
updated_at
string <date-time>
required
The date and time the card was last updated.
metadata
object 
required
Metadata specific to the webhook.
Example
[
    {
        "id": "02e4998d-7f50-4f55-918e-23dc35a5256b",
        "client_id": "e7f2dfe5-026f-4d4f-a567-a6914325e4d8",
        "url": "https://haunting-coal.org/",
        "created_at": "2025-01-14T17:00:18.619Z",
        "updated_at": "2025-01-14T17:00:18.620Z",
        "metadata": {}
    },
    {
        "id": "25360e18-b8b0-406f-bad1-92fa176a62ba",
        "client_id": "2decd3bb-b1f1-439f-84ae-76b82835840c",
        "url": "https://raw-deployment.us/",
        "created_at": "2025-01-14T17:00:18.621Z",
        "updated_at": "2025-01-14T17:00:18.621Z",
        "metadata": {}
    }
]
Previous
Webhooks API
Next
Create a webhook
Built with