PayZuDocs

Returns a JWT token to authenticate the routes. Send your account's client_id and client_secret via Basic Auth, over the mTLS connection.

POSThttps://api.payzu.io/v1/token
POST
/token

Body Params

OAuth grant type client_credentials

Responses

curl -X POST "https://api.payzu.io/v1/token" \  -H "Authorization: Bearer {{token}}" \  -H "Content-Type: application/json" \  -d '{}'
200
{
"access_token": "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...",
"token_type": "Bearer",
"expires_in": 3600
}