Get webhook
Returns the configuration of a webhook: delivery URL, status and subscribed events.
curl -X GET "https://api.payzu.processamento.com/v1/user/webhooks/cm3w7k1t40000q8f2r5b9x3ad" \ -H "Authorization: Bearer {{token}}"fetch("https://api.payzu.processamento.com/v1/user/webhooks/cm3w7k1t40000q8f2r5b9x3ad", { method: "GET", headers: { "Authorization": "Bearer {{token}}" }})import requestsurl = "https://api.payzu.processamento.com/v1/user/webhooks/cm3w7k1t40000q8f2r5b9x3ad"response = requests.request("GET", url, headers = { "Authorization": "Bearer {{token}}"})print(response.text)