Kutanapay Merchant API
  1. Merchant Webhooks
Kutanapay Merchant API
  • Merchant API Keys
    • Create Api Key
      POST
    • Get Api Keys
      GET
    • Revoke Api Key
      DELETE
  • Merchant Wallet
    • Get All Wallets
      GET
    • Get Wallet Transactions
      GET
    • Process Refund
      POST
    • Get Settlement Batches
      GET
    • Update Wallet Status
      PATCH
    • Get Wallet By Currency
      GET
  • Merchant Customer Transactions
    • Get Merchant Transactions
      GET
    • Get Merchant Transaction
      GET
  • Merchant Checkout
    • Create Checkout
      POST
    • List Checkouts
      GET
    • Get Checkout
      GET
  • Merchant Webhooks
    • Create Webhook
      POST
    • Get Webhooks
      GET
    • Update Webhook
      PUT
    • Delete Webhook
      DELETE
  • Merchant Branding
    • Get Branding
      GET
    • Update Branding
      PUT
  • Merchant Payment Accounts
    • Add Payment Account
      POST
    • Get Payment Accounts
      GET
    • Get Payment Account
      GET
    • Update Payment Account
      PUT
    • Delete Payment Account
      DELETE
  • Merchant Withdrawals
    • Initiate Withdrawal
    • Get Withdrawal History
    • Cancel Withdrawal
    • Get Withdrawal
  • Merchant Payouts
    • Initiate Payout
    • Get Payout History
    • Cancel Payout
    • Get Payout
  1. Merchant Webhooks

Get Webhooks

GET
/api/v1/merchants/webhooks
Get all webhooks for merchant

Request

Authorization
Add parameter in header
x-api-key
Example:
x-api-key: ********************
Header Params

Responses

🟢200OK
application/json
Successful Response
Body

🟠422Parameter Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/v1/merchants/webhooks' \
--header 'x-api-key: <api-key>'
Response Response Example
200 - Success
{
    "data": [
        {
            "id": "4922eb52-f168-4bda-8164-053a75ca1b7b",
            "merchant_id": "7bb54443-6fc9-4a1d-ab46-d787ec90c87f",
            "url": "https://webhook.site/edda5cd4-db7e-4c70-9166-7c90d4691fc9",
            "secret": "JLmFdrkuAzABhiN9RlemxYTu-vXqvxyy7ZKAcsQwfXU",
            "is_active": true,
            "timeout_seconds": 45,
            "last_triggered_at": "2025-11-17T16:43:00.849787+01:00",
            "failure_count": 0,
            "created_at": "2025-11-17T16:42:40.986347+01:00",
            "updated_at": "2025-11-17T17:43:00.236980+01:00"
        }
    ],
    "message": "Webhooks retrieved successfully",
    "status": "success"
}
Modified at 2025-10-16 13:16:45
Previous
Create Webhook
Next
Update Webhook
Built with