POST
/
payouts
/
create-mobile-money-payout
curl --request POST \
  --url https://api.clickpesa.com/third-parties/payouts/create-mobile-money-payout \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "amount": 123,
  "phoneNumber": "<string>",
  "currency": "TZS",
  "orderReference": "<string>",
  "checksum": "<string>"
}'
{
  "updatedAt": "2023-11-07T05:31:56Z",
  "createdAt": "2023-11-07T05:31:56Z",
  "id": "<string>",
  "orderReference": "<string>",
  "amount": "1000",
  "currency": "TZS",
  "fee": "47.00",
  "status": "AUTHORIZED",
  "channel": "MOBILE MONEY",
  "channelProvider": "MPESA TANZANIA",
  "beneficiary": {
    "accountNumber": "255650000000",
    "accountName": "John Doe"
  }
}

Authorizations

Authorization
string
header
required

Authorization header in the form of Bearer <token>, where <token> is a valid JWT from generate token endpoint

Body

application/json

Response

200
application/json
Mobile money payout Preview response

The response is of type object.