> ## Documentation Index
> Fetch the complete documentation index at: https://docs.leapfinancial.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Deferred payout

> Originate deferred remittances with deferred-payout-origination and claim via payout-claim

## Overview

Deferred payout splits the journey:

1. **Sender** funds now on **`deferred-payout-origination`**
2. **Recipient** claims later on **`payout-claim`**

Use this when the beneficiary should receive funds after the sender has already committed, without both parties completing the same session.

## Originate (sender)

```bash theme={null}
curl -X POST https://raas-widgets-backend-sandbox.up.railway.app/partner/links \
  -H "X-API-Key: raas_sandbox_your_api_key_here" \
  -H "Content-Type: application/json" \
  -d '{
    "referenceId": "sender_user_123",
    "flow": "deferred-payout-origination",
    "expiresInMinutes": 120,
    "language": "es"
  }'
```

Optional `config` can prefill user data and corridor pins (same general shape as send). See OpenAPI for the current schema.

## Claim (recipient)

<Note>
  **`payout-claim`** is the recipient/claim side. Platforms often mint claim links automatically after origination. You can also create `flow: "payout-claim"` via `POST /partner/links` when your integration owns claim distribution — see OpenAPI (`CreatePayoutClaimLinkDto`) for required fields such as origination or send-commitment inputs.
</Note>

Listen for standard Partner webhooks (`operation.created`, `operation.cancelled`, …) as the claim binds into an operation.

## Related Partner resources

| Resource                        | Purpose                                                             |
| ------------------------------- | ------------------------------------------------------------------- |
| `POST /partner/links`           | Mint origination (and optionally claim) links                       |
| Partner portal deferred payouts | Ops list / cancel (Clerk session)                                   |
| Compat APIs                     | Brief note under [Pre-quote lite](/raas-widgets/ops/pre-quote-lite) |

## Next steps

<CardGroup cols={2}>
  <Card title="Flows catalog" icon="layer-group" href="/raas-widgets/concepts/flows">
    How flows fit in the platform.
  </Card>

  <Card title="Operations" icon="list" href="/raas-widgets/ops/operations">
    Query operations after claim.
  </Card>
</CardGroup>
