Skip to main content

Documentation Index

Fetch the complete documentation index at: https://doc.raliopay.com/llms.txt

Use this file to discover all available pages before exploring further.

Event Name: payout_completed
The payout has been successfully executed and funds have been sent

Event Payload

The webhook payload contains the following structure:
{
  "eventId": "ffef8933-2d3a-48d6-952a-81c602c7709c",
  "eventType": "payout_completed",
  "timestamp": "2026-02-23T17:36:59.9204657-05:00",
  "data": {
    "status": "COMPLETED",
    "payoutType": "bankPayout",
    "orderId": "00c32e47-245d-45f0-94f1-3f77eda656be",
    "ownReference": "Merchant internal reference for reconciliation",
    "source": {
      "type": "account",
      "debitedAccountId": "a5a03fd6-eacc-48ee-b8f6-67267b4095ab",
      "debitedUserId": "15c5277a-8c8c-41d2-9f42-66f82f6f113d"
    },
    "destination": {
      "type": "bankAccount",
      "routingType": "SWIFT",
      "accountNumber": "1234567890",
      "bankWireRef": "TX1751382490165317",
      "swift": "CHASUS33XXX",
      "beneficiary": {
        "type": "BUSINESS",
        "name": "John",
        "surname": "Doe",
        "relation": "MYSELF",
        "document": {
          "type": "PASSPORT",
          "number": "X12345678"
        },
        "contact": {
          "email": "john@mail.com",
          "phone": "+12125551234"
        },
        "address": {
          "line1": "350 Fifth Avenue",
          "postalCode": "10118",
          "province": "NY",
          "city": "New York",
          "country": "US"
        }
      }
    },
    "amounts": {
      "debitedAmount": {
        "amount": 10000,
        "currency": "EUR"
      },
      "fees": {
        "currency": "EUR",
        "total": 100,
        "breakdown": {
          "systemFee": 60,
          "merchantFee": 40
        }
      },
      "amountAfterFees": {
        "amount": 9900,
        "currency": "EUR"
      },
      "fx": {
        "pair": "EUR/USD",
        "rate": "1.0909090909"
      },
      "creditedAmount": {
        "amount": 10800,
        "currency": "USD"
      }
    }
  }
}