# Disburse (pay)

```
POST {{uri}}/kes/disburse
```

#### Body Request

***

| name            | type    | description                                   |
| --------------- | ------- | --------------------------------------------- |
| type            | string  | Type of payment, MOBILE, BUY\_GOODS & PAYBILL |
| shortcode       | string  | Recipient mobile number                       |
| account\_number | string  | Required if type is PAYBILL                   |
| amount          | integer | Amount to disburse                            |
| mobile\_network | string  | Supported mobile network ie Safaricom         |
| callback\_url   | url     | URL to receive payment notification           |

{% tabs %}
{% tab title="200 - Success" %}

```
{
    "code": 200,
    "message": "Disburse initiated",
    "data": {
        "status": "PENDING",
        "transaction_code": "TSALX",
        "message": "Success! Processing payment."
    }
}
```

{% endtab %}

{% tab title="400 - Bad Request" %}

```
{
   "code": 400,
   "message": "Failed - Bad Request"
}
```

{% endtab %}
{% endtabs %}
