For the complete documentation index, see llms.txt. This page is also available as Markdown.

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.

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

Instructions

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

{
  ...
  "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"
    }
  ]
  ...
}

Last updated