List Webhooks

List all configured webhooks.

Returns all webhooks configured for your business, optionally filtered by environment.

Endpoint

GET /v1/webhooks

Authentication

Header
Value

x-api-key

Your API key

Query parameters

Parameter
Type
Required
Description

environment

string

No

Filter by TEST or LIVE

Example request

curl -X GET "https://ramp-api.ivorypay.io/api/v1/webhooks?environment=LIVE" \
  -H "x-api-key: your_api_key"

Example response

{
  "statusCode": 200,
  "success": true,
  "message": "Query successful",
  "data": [
    {
      "id": "wh-uuid-1",
      "url": "https://yourapp.com/webhooks/ivorypay",
      "environment": "LIVE",
      "events": ["onramp.success", "offramp.success", "buy.success", "sell.success"],
      "createdAt": "2026-03-26T12:00:00.000Z"
    }
  ]
}

Last updated