返回用于下载报表 CSV 的短期签名 URL;有效期见 `expiresAt`。
curl -X POST "https://api.payzu.processamento.com/v1/user/report/01997c3a-8f21-7c4d-9e05-3b6a1d2f4c78/download" \ -H "Authorization: Bearer {{token}}"fetch("https://api.payzu.processamento.com/v1/user/report/01997c3a-8f21-7c4d-9e05-3b6a1d2f4c78/download", { method: "POST", headers: { "Authorization": "Bearer {{token}}" }})import requestsurl = "https://api.payzu.processamento.com/v1/user/report/01997c3a-8f21-7c4d-9e05-3b6a1d2f4c78/download"response = requests.request("POST", url, headers = { "Authorization": "Bearer {{token}}"})print(response.text)