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

# Send flow

> Person-to-person send variant — mint magic links with flow send

## Overview

**`send`** is a send-money flow variant closely related to [smart](/raas-widgets/flows/smart). Use it when your partner configuration enables `send` specifically (check `allowedFlows`).

Both flows let the end user complete corridor, amount, and payment details in the widget. Prefer **smart** for new integrations unless your Leap contact points you at **send**.

## Create example

```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": "user_12345",
    "flow": "send",
    "expiresInMinutes": 60,
    "language": "en"
  }'
```

Optional `config` can carry prefilled user or corridor hints when your contract supports them — see [Create links](/raas-widgets/guides/create-links) and OpenAPI for the current schema.

## Related

<CardGroup cols={2}>
  <Card title="Smart" icon="sparkles" href="/raas-widgets/flows/smart">
    Recommended minimal send starting point.
  </Card>

  <Card title="Quick start" icon="rocket" href="/raas-widgets/quickstart">
    Sandbox walkthrough.
  </Card>
</CardGroup>
