Skip to main content
POST
/
payouts
/
create-mobile-money-payout
cURL
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": "1047.10",
  "currency": "TZS",
  "fee": "47.10",
  "exchanged": true,
  "exchange": {
    "sourceCurrency": "USD",
    "targetCurrency": "TZS",
    "sourceAmount": 1000,
    "rate": 2500
  },
  "status": "AUTHORIZED",
  "channel": "MOBILE MONEY",
  "channelProvider": "MPESA TANZANIA",
  "order": {
    "amount": "1000.00",
    "currency": "TZS"
  },
  "beneficiary": {
    "accountNumber": "255650000000",
    "accountName": "John Doe",
    "amount": "1000.00"
  },
  "clientId": "<string>"
}

Authorizations

Authorization
string
header
required

Authorization header containing the JWT access token returned from the generate token endpoint. The token already includes the Bearer prefix. Example: Authorization: Bearer eyJhbGciOi...

Body

application/json
amount
number
required

Your payout amount

phoneNumber
string
required

Mobile phone number to receive mobile money payout, starting with country code and without the plus sign, e.g., 255712345678

currency
enum<string>
required

Account currency to pay out from (TZS or USD). User will receive funds in TZS (Mobile can't hold USD)

Available options:
TZS,
USD
orderReference
string
required

Your unique Order reference

checksum
string

If enabled, this is the generated checksum of the payload. Refer to the documentation for more details.

Response

Mobile money payout Preview response

updatedAt
string<date-time>
createdAt
string<date-time>
id
string
orderReference
string

Your unique order reference

amount
string

Total amount deducted from your account balance (includes fee)

Example:

"1047.10"

currency
string
Example:

"TZS"

fee
string

Transaction fee deducted from source currency (included in amount)

Example:

"47.10"

exchanged
boolean

Indicates if currency conversion was applied (true when source currency differs from receiving currency)

Example:

true

exchange
object

Exchange rate details (only present when exchanged is true)

status
enum<string>
Available options:
AUTHORIZED,
SUCCESS,
REVERSED
channel
enum<string>
Available options:
MOBILE MONEY
channelProvider
string
Example:

"MPESA TANZANIA"

order
object
beneficiary
object
clientId
string

Application Client ID associated with the payout

I