# Payout

### Payout

## This endpoint is used to do the actual payout.&#x20;

<mark style="color:green;">`POST`</mark> `https://exchanger-api.fuspay.finance/api/v1/no-auth/PartnerP2P/Payout/`

Transfer to a bank account or mobile money

#### Headers

| Name                                            | Type   | Description         |
| ----------------------------------------------- | ------ | ------------------- |
| Authorization<mark style="color:red;">\*</mark> | String | partners public key |

#### Request Body

| Name                                                     | Type   | Description                                                                                                      |
| -------------------------------------------------------- | ------ | ---------------------------------------------------------------------------------------------------------------- |
| amount<mark style="color:red;">\*</mark>                 | String | The amount that is about to be withdrawn                                                                         |
| account\_number<mark style="color:red;">\*</mark>        | String | The bank account number or mobile money number                                                                   |
| currency<mark style="color:red;">\*</mark>               | String | This is the currency of the wallet your are withdrawing from                                                     |
| withdrawal\_reference<mark style="color:red;">\*</mark>  | String | This is a string generated from your end to identify the withdrawal                                              |
| partner\_id<mark style="color:red;">\*</mark>            | String | this is your partner id on on the IPC system                                                                     |
| intrapay\_merchant\_id<mark style="color:red;">\*</mark> | String | This is your merchant ID on the Intrapay platform                                                                |
| signature<mark style="color:red;">\*</mark>              | String | The signature is the request body signed with the merchant secret key + Partner secret key                       |
| account\_code<mark style="color:red;">\*</mark>          | String | this is the code identifying the bank ("057" for Nigerian Banks )or the mobile money providers (MPESA, MTN, VOD) |
| partner\_callback\_url                                   | String | This is your notification URL                                                                                    |

{% tabs %}
{% tab title="200: OK Successful Transfer " %}
{% code overflow="wrap" lineNumbers="true" fullWidth="true" %}

```javascript
{ "success": true, "message": "Withdrawal initiated. Updates will be provided on callback!!!", "data": null }
```

{% endcode %}
{% endtab %}
{% endtabs %}
