List webhooks
Returns the webhooks registered on the account, with URL, status and events.
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)