POST
/
payouts
/
preview-bank-payout-request
curl --request POST \
  --url https://api.clickpesa.com/third-parties/payouts/preview-bank-payout-request \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "amount": 123,
  "accountNumber": "<string>",
  "currency": "TZS",
  "orderReference": "<string>",
  "bic": "<string>",
  "transferType": "ACH",
  "checksum": "<string>"
}'
{
  "amount": 1047.1,
  "balance": 2000,
  "channelProvider": "AMANA BANK LIMITED",
  "fee": 47.1,
  "order": {
    "amount": 1000,
    "currency": "TZS",
    "id": "UNIQUEREFERENCE"
  },
  "payoutFeeBearer": "merchant",
  "receiver": {
    "accountNumber": "0112345400847jhs"
  },
  "transferType": "ACH"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
amount
number
required
accountNumber
string
required
currency
enum<string>
required
Available options:
TZS
orderReference
string
required

Your unique Order reference

bic
string
required

Beneficiary bank BIC. You can fetch the list of bank BICs from the banks list endpoint.

transferType
enum<string>
required
Available options:
ACH,
RTGS
checksum
string

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

Response

200
application/json
USSD Push Preview response
amount
number
Example:

1047.1

balance
number
Example:

2000

channelProvider
string
Example:

"AMANA BANK LIMITED"

fee
number
Example:

47.1

order
object
payoutFeeBearer
enum<string>
Available options:
merchant,
both,
customer
Example:

"merchant"

receiver
object
transferType
enum<string>
Available options:
ACH,
RTGS