Reverse charge
Performs a full or partial reversal of a charge
PUT
https://api.payzu.io/v1/charges/{chargeId}/reverseResponses
curl -X PUT "https://api.payzu.io/v1/charges/string/reverse" \ -H "Authorization: Bearer {{token}}"fetch("https://api.payzu.io/v1/charges/string/reverse", { method: "PUT", headers: { "Authorization": "Bearer {{token}}" }})import requestsurl = "https://api.payzu.io/v1/charges/string/reverse"response = requests.request("PUT", url, headers = { "Authorization": "Bearer {{token}}"})print(response.text)200