List Webhook Events

List all available webhook events.

Returns all available webhook events you can subscribe to. This endpoint does not require authentication.

Endpoint

GET /v1/webhooks/events

Authentication

None required — this is a public endpoint.

Example request

curl -X GET https://ramp-api.ivorypay.io/api/v1/webhooks/events

Example response

{
  "statusCode": 200,
  "success": true,
  "message": "Query successful",
  "data": [
    "onramp.success",
    "onramp.fiatPaymentReceived",
    "onramp.cryptoPayoutProcessing",
    "onramp.failed",
    "offramp.success",
    "offramp.cryptoPaymentReceived",
    "offramp.failed",
    "offramp.declined",
    "sell.success",
    "sell.failed",
    "sell.cancelled",
    "buy.success",
    "buy.failed",
    "buy.mismatch",
    "deposit.received",
    "settlement.awaitingSettlementAccount",
    "settlement.converting",
    "settlement.payoutInitiated",
    "settlement.payoutProcessing",
    "settlement.success",
    "settlement.failed"
  ]
}

For detailed payload schemas for each event, see Webhook Events Reference.

Last updated