> For the complete documentation index, see [llms.txt](https://docs.kitegateway.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.kitegateway.com/receiving-money/mobile-money-payment.md).

# Mobile Money Payment

### Set Payment Method

When the payment transaction is to be completed using mobile money, The **`payment_method`** field should be set to **`MOBILE_MONEY`** in the post request collection body.

{% tabs %}
{% tab title="Sample Request Body" %}

```javascript
{
  ...
  "method": "MOBILE_MONEY",
  ...
}
```

{% endtab %}
{% endtabs %}

### Instructions

Directions about how the payment will be completed will be sent in the response body

{% tabs %}
{% tab title="Sample Response Body" %}

```javascript
{
  ...
  "instructions": [
    {
      "step": "1",
      "description": "Ensure that you have enough money on your Airtel Money account"
    },
    {
      "step": "2",
      "description": "When the USSD screen appears with the specified amount, approve the payment by entering the PIN"
    }
  ]
  ...
}
```

{% endtab %}
{% endtabs %}
