Get API token
Returns a JWT token to authenticate the routes. Send your account's client_id and client_secret via Basic Auth, over the mTLS connection.
POST
https://api.payzu.io/v1/tokenResponses
curl -X POST "https://api.payzu.io/v1/token" \ -H "Authorization: Bearer {{token}}" \ -H "Content-Type: application/json" \ -d '{}'const body = JSON.stringify({})fetch("https://api.payzu.io/v1/token", { method: "POST", headers: { "Content-Type": "application/json", "Authorization": "Bearer {{token}}" }, body})import requestsurl = "https://api.payzu.io/v1/token"body = """{}"""response = requests.request("POST", url, data = body, headers = { "Content-Type": "application/json", "Authorization": "Bearer {{token}}"})print(response.text)200