返回该账户创建的报表任务。
curl -X GET "https://api.payzu.processamento.com/v1/user/report" \ -H "Authorization: Bearer {{token}}"fetch("https://api.payzu.processamento.com/v1/user/report", { method: "GET", headers: { "Authorization": "Bearer {{token}}" }})import requestsurl = "https://api.payzu.processamento.com/v1/user/report"response = requests.request("GET", url, headers = { "Authorization": "Bearer {{token}}"})print(response.text)