curl --request POST \
--url https://api.clickpesa.com/third-parties/payout-link/generate-payout-url \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"amount": "<string>",
"orderReference": "<string>",
"checksum": "<string>"
}
'{
"payoutLink": "<string>",
"clientId": "<string>"
}Generate Payout Link for making payouts
curl --request POST \
--url https://api.clickpesa.com/third-parties/payout-link/generate-payout-url \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"amount": "<string>",
"orderReference": "<string>",
"checksum": "<string>"
}
'{
"payoutLink": "<string>",
"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...
Your payout amount
Your unique Order reference
If enabled, this is the generated checksum of the payload. Refer to the documentation for more details.