# PayOut — Send Mobile Money

```
POST /Payouts/PayoutMobileMoney
```

Disburses funds to one or more recipients' Mobile Money wallets.

## Request body

| Field            | Type                 | Required | Description                        |
| ---------------- | -------------------- | -------- | ---------------------------------- |
| `externalID`     | string               | yes      | Unique payout ID generated by you. |
| `senderID`       | string (UUID)        | yes      | From `AddPayOutSender`.            |
| `transactionOut` | **array** of objects | yes      | One entry per recipient.           |

**`transactionOut[]` object**

| Field            | Type              | Required | Description                                                                             |
| ---------------- | ----------------- | -------- | --------------------------------------------------------------------------------------- |
| `name`           | string            | yes      | Recipient full name.                                                                    |
| `address`        | string            | yes      | Recipient address.                                                                      |
| `email`          | string            | yes      | Recipient email.                                                                        |
| `mobile_number`  | string            | yes      | Full mobile number **including country code** (e.g., `237670000000`). Note snake\_case. |
| `operator`       | string            | yes      | Mobile Money operator (case-sensitive).                                                 |
| `account_number` | string            | yes      | Recipient's Mobile Money account number. Note snake\_case.                              |
| `currency`       | string (ISO 4217) | yes      | e.g., `XAF`.                                                                            |
| `countryCode`    | string            | yes      | e.g., `CM`.                                                                             |
| `amount`         | number            | yes      | Payout amount.                                                                          |

{% hint style="warning" %}
**Naming conventions differ from PayIn.** `transactionOut` is an array (not an object), and `mobile_number` / `account_number` use snake\_case while other fields are camelCase. See the [PayOut guide](broken://pages/LHu4a33GS1mpXfpLT2ja) for details.
{% endhint %}

## Response

| Field              | Type          | Description                          |
| ------------------ | ------------- | ------------------------------------ |
| `orderID`          | string (UUID) | Nexterpay identifier.                |
| `externalID`       | string        | Echo of your ID.                     |
| `validationStatus` | string        | Initial state (typically `Pending`). |

## Example

```bash
curl -X POST "https://api-sandbox.nexterpay.io/Payouts/PayoutMobileMoney" \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "externalID": "payout-20260423-000045",
    "senderID": "7f3e2a1b-9c8d-4e5f-a0b1-c2d3e4f5a6b7",
    "transactionOut": [
      {
        "name": "Amina Ngono",
        "address": "12 Rue de la Paix, Douala",
        "email": "amina.ngono@example.com",
        "mobile_number": "237670000000",
        "operator": "Orange",
        "account_number": "12345678901",
        "currency": "XAF",
        "countryCode": "CM",
        "amount": 500
      }
    ]
  }'
```

```json
{
  "orderID": "e1f2a3b4-c5d6-4e7f-8a9b-0c1d2e3f4a5b",
  "externalID": "payout-20260423-000045",
  "validationStatus": "Pending"
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.nexterpay.io/api-reference/payout-send.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
