POST
/
payments
/
preview-ussd-push-request
curl --request POST \
  --url https://api.clickpesa.com/third-parties/payments/preview-ussd-push-request \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "amount": "<string>",
  "currency": "TZS",
  "orderReference": "<string>",
  "checksum": "<string>"
}'
{
  "activeMethods": [
    {
      "name": "<string>",
      "status": "AVAILABLE",
      "fee": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Body

application/json
amount
string
required

Amount

currency
enum<string>
required
Available options:
TZS
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

200
application/json
USSD Push Preview response
activeMethods
object[]