返回针对该账户发起的 MED 违规记录,支持分页和筛选。
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)