MoneyUnify
  1. Request Payment
MoneyUnify
  • Mobile Money API Documentation
  • Request Payment
    • Request to Pay
      POST
    • Verify Payment
      POST
  • Direct Transfers - coming soon
    • Direct Transafer
      POST
  • Settlements - coming soon
    • Settlement
      POST
  • Payment Links - coming soon
    • Create Link
      POST
  • Schemas
    • Sample Schemas
      • Pet
      • Category
      • Tag
  1. Request Payment

Request to Pay

POST
/payments/request
Request for a payment from your customers or clients

Request

Header Params

Body Params application/x-www-form-urlencoded

Responses

🟢200Request to Pay
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/payments/request' \
--header 'Accept: application/json' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data-urlencode 'from_payer=097xxxxxxx' \
--data-urlencode 'amount=1' \
--data-urlencode 'auth_id=01K7SFJKJ0J61A3XRWC1W6TW90'
Response Response Example
{
    "message": "Transaction Initiated Successfully",
    "data": {
        "status": "initiated",
        "amount": 1,
        "transaction_id": "sPX215101815432505",
        "charges": 0.035,
        "from_payer": "260971xxxxxxx"
    },
    "isError": false
}
Modified at 2025-10-18 16:07:30
Previous
Request Payment
Next
Verify Payment
Built with