POST
/
generate-token
curl --request POST \
  --url https://api.clickpesa.com/third-parties/generate-token \
  --header 'api-key: <api-key>' \
  --header 'client-id: <client-id>'
{
  "success": true,
  "token": "Bearer token"
}

Headers

client-id
string
required

Your Client ID for authentication.

api-key
string
required

Your API Key for authentication.

Response

200
application/json
Generate token response
success
boolean
required
Example:

true

token
string
required
Example:

"Bearer token"