POST
/
momo
/
payout
Create new MoMo Payout Request
curl --request POST \
  --url https://api.stablepay.ai/momo/payout \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "amount": 123,
  "destination": "Paybill",
  "accountName": "<string>",
  "accountNumber": "<string>",
  "businessNumber": "<string>",
  "reference": "<string>",
  "currency": "KES",
  "country": "KE",
  "code": "M-Pesa"
}'
{
  "success": true,
  "transactionId": "<string>"
}

Authorizations

Authorization
string
header
required

API key authentication using Bearer scheme. Format: Bearer {STA_xxxx}

Body

application/json

Create a new Mobile Money payment.

The body is of type object.

Response

Payout request successfully created.

The response is of type object.