> ## 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.

# Transfer Processing

> Webhook event fired when the state of a transfer changes

<Info>
  **Event Name:** `transfer_processing`
</Info>

## Event Payload

The webhook payload contains the following structure:

<CodeGroup>
  ```json Example Payload theme={null}
  {
    "eventId": "0869bcf8-0d0a-432e-a32a-958f7cdd77bd",
    "eventType": "transfer_processing",
    "timestamp": "2026-02-24T15:05:58.0868726-05:00",
    "data": {
      "status": "PROCESSING",
      "orderId": "a1defee4-7f8d-49cc-8d97-5e5eb8099f4c",
      "ownReference": "Merchant internal reference for reconciliation",
      "source": {
        "type": "account",
        "debitedAccountId": "8befb505-7f8c-4a72-85a5-e7cbc9719ba8",
        "debitedUserId": "15c5277a-8c8c-41d2-9f42-66f82f6f113d"
      },
      "destination": {
        "type": "account",
        "creditedAccountId": "e582cef6-a320-4d0d-afda-446ba16725ac",
        "creditedUserId": "02b891cf-25bd-4c34-80ef-fa907f25224c"
      },
      "amounts": {
        "debitedAmount": {
          "amount": 10000,
          "currency": "USDC"
        },
        "creditedAmount": {
          "amount": 10000,
          "currency": "USDC"
        }
      }
    }
  }
  ```
</CodeGroup>
