List infractions
Returns the MED infractions opened against the account, with pagination and filters.
curl -X GET "https://api.payzu.processamento.com/v1/user/infractions" \ -H "Authorization: Bearer {{token}}"fetch("https://api.payzu.processamento.com/v1/user/infractions", { method: "GET", headers: { "Authorization": "Bearer {{token}}" }})import requestsurl = "https://api.payzu.processamento.com/v1/user/infractions"response = requests.request("GET", url, headers = { "Authorization": "Bearer {{token}}"})print(response.text)