返回账户交易的分页列表,可按状态、类型、时间段和 clientReference 筛选。
curl -X GET "https://api.payzu.processamento.com/v1/user/transactions" \ -H "Authorization: Bearer {{token}}"fetch("https://api.payzu.processamento.com/v1/user/transactions", { method: "GET", headers: { "Authorization": "Bearer {{token}}" }})import requestsurl = "https://api.payzu.processamento.com/v1/user/transactions"response = requests.request("GET", url, headers = { "Authorization": "Bearer {{token}}"})print(response.text)