返回账户交易已发送回调的分页列表。
curl -X GET "https://api.payzu.processamento.com/v1/user/callbacks" \ -H "Authorization: Bearer {{token}}"fetch("https://api.payzu.processamento.com/v1/user/callbacks", { method: "GET", headers: { "Authorization": "Bearer {{token}}" }})import requestsurl = "https://api.payzu.processamento.com/v1/user/callbacks"response = requests.request("GET", url, headers = { "Authorization": "Bearer {{token}}"})print(response.text)