# 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 %}


---

# 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.kitegateway.com/receiving-money/mobile-money-payment.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.
