Get infraction
Returns the reason, the disputed amount, the defense deadline and the related transaction.
curl -X GET "https://api.payzu.processamento.com/v1/user/infractions/cm3w7n2p60002q8f2h7d3z5cf" \ -H "Authorization: Bearer {{token}}"fetch("https://api.payzu.processamento.com/v1/user/infractions/cm3w7n2p60002q8f2h7d3z5cf", { method: "GET", headers: { "Authorization": "Bearer {{token}}" }})import requestsurl = "https://api.payzu.processamento.com/v1/user/infractions/cm3w7n2p60002q8f2h7d3z5cf"response = requests.request("GET", url, headers = { "Authorization": "Bearer {{token}}"})print(response.text)