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

# Payin Processing

> Webhook event fired when a funding operation is pending confirmation

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

## Event Payload

The webhook payload contains the following structure:

<CodeGroup>
  ```json Excample Payload - cardPayin theme={null}
  {
    "eventId": "9777ba7b-9e54-4d52-b30f-ee721661acfc",
    "eventType": "payin_processing",
    "timestamp": "2026-02-26T16:55:57.6523927-05:00",
    "data": {
      "status": "PROCESSING",
      "payinType": "cardPayin",
      "orderId": "8fa466e5-986f-4111-a64a-2d7c369108db",
      "ownReference": "Merchant internal reference for reconciliation",
      "source": {
        "type": "card",
        "payer": {
          "name": "John Doe",
          "email": "john@mail.com",
          "phone": "123456789"
        },
        "cardBin": "999999",
        "cardLastFour": "9999"
      },
      "destination": {
        "type": "account",
        "creditedAccountId": "a5a03fd6-eacc-48ee-b8f6-67267b4095ab",
        "creditedUserId": "15c5277a-8c8c-41d2-9f42-66f82f6f113d"
      },
      "amounts": {
        "receivedAmount": {
          "amount": 10000,
          "currency": "EUR"
        }
      }
    }
  }
  ```
</CodeGroup>
