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

> Webhook event fired when the state of a transfer changes

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

## Event Payload

The webhook payload contains the following structure:

<CodeGroup>
  ```json Example Payload theme={null}
  {
    "eventId": "3f1bd76a-b247-4a7c-ba83-6d03d98cf633",
    "eventType": "transfer_completed",
    "timestamp": "2026-02-24T15:05:58.1107863-05:00",
    "data": {
      "status": "COMPLETED",
      "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>
