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

# Unmatched Bank Payin Assigned

> Webhook event fired when an unmatched bank payin is attributed to an account and settles as a regular payin

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

The unmatched bank payin was attributed to one of your accounts and replayed through the standard payin flow. The event carries the `accountId` the funds were credited to and the `orderId` of the resulting bank payin order.

## Event Payload

The webhook payload contains the following structure:

<CodeGroup>
  ```json Example Payload theme={null}
  {
    "eventId": "a3b6c9d2-1e4f-7a8b-9c0d-1e2f3a4b5c6d",
    "eventType": "unmatched_bank_payin_assigned",
    "timestamp": "2026-07-10T10:02:11.937Z",
    "data": {
      "id": 42,
      "state": "ASSIGNED",
      "reason": "NO_VALID_CODE",
      "amount": 150000,
      "currency": "EUR",
      "concept": "REF-UNKNOWN",
      "senderName": "ACME LTD",
      "senderAccount": "ES9121000418450200051332",
      "rail": "SEPA",
      "accountId": "6bfb8f77-cd67-4379-a508-4227af2e5c7f",
      "orderId": "e5f6a7b8-c9d0-4e1f-2a3b-4c5d6e7f8a9b",
      "resolvedAt": "2026-07-10T10:02:11Z"
    }
  }
  ```
</CodeGroup>

<Note>
  This event fires once the replayed payin settles, so the regular [payin events](/webhooks-events/payin/overview) for the resulting order are emitted as well — use `orderId` to correlate them. `amount` is expressed in **minor units**.
</Note>
