curl --request POST \
--url https://api.clickpesa.com/third-parties/payouts/create-bank-payout \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"amount": 123,
"accountNumber": "<string>",
"accountName": "<string>",
"currency": "TZS",
"orderReference": "<string>",
"bic": "<string>",
"transferType": "ACH",
"checksum": "<string>"
}'
{
"updatedAt": "2023-11-07T05:31:56Z",
"createdAt": "2023-11-07T05:31:56Z",
"id": "<string>",
"orderReference": "<string>",
"amount": "20000.00",
"currency": "TZS",
"fee": "2360.00",
"status": "AUTHORIZED",
"channel": "BANK TRANSFER",
"channelProvider": "Equity Bank Tanzania Limited",
"transferType": "ACH",
"beneficiary": {
"accountNumber": "123456789",
"accountName": "John Doe"
},
"clientId": "<string>"
}
curl --request POST \
--url https://api.clickpesa.com/third-parties/payouts/create-bank-payout \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"amount": 123,
"accountNumber": "<string>",
"accountName": "<string>",
"currency": "TZS",
"orderReference": "<string>",
"bic": "<string>",
"transferType": "ACH",
"checksum": "<string>"
}'
{
"updatedAt": "2023-11-07T05:31:56Z",
"createdAt": "2023-11-07T05:31:56Z",
"id": "<string>",
"orderReference": "<string>",
"amount": "20000.00",
"currency": "TZS",
"fee": "2360.00",
"status": "AUTHORIZED",
"channel": "BANK TRANSFER",
"channelProvider": "Equity Bank Tanzania Limited",
"transferType": "ACH",
"beneficiary": {
"accountNumber": "123456789",
"accountName": "John Doe"
},
"clientId": "<string>"
}
Authorization header containing the JWT access token returned from the generate token endpoint. The token already includes the Bearer prefix. Example: Authorization: Bearer eyJhbGciOi...
Create bank payout response
The response is of type object
.