列出 webhook
返回账户已注册的 webhook,包含 URL、状态和事件。
curl -X GET "https://api.payzu.processamento.com/v1/user/webhooks" \ -H "Authorization: Bearer {{token}}"fetch("https://api.payzu.processamento.com/v1/user/webhooks", { method: "GET", headers: { "Authorization": "Bearer {{token}}" }})import requestsurl = "https://api.payzu.processamento.com/v1/user/webhooks"response = requests.request("GET", url, headers = { "Authorization": "Bearer {{token}}"})print(response.text)