Count sent callbacks
Returns how many callbacks were sent, in total or filtered by webhook.
Confira nosso tutorial
GET
https://api.payzu.processamento.com/v1/user/webhooks/sent/quantityResponses
curl -X GET "https://api.payzu.processamento.com/v1/user/webhooks/sent/quantity" \ -H "Authorization: Bearer {{token}}"fetch("https://api.payzu.processamento.com/v1/user/webhooks/sent/quantity", { method: "GET", headers: { "Authorization": "Bearer {{token}}" }})import requestsurl = "https://api.payzu.processamento.com/v1/user/webhooks/sent/quantity"response = requests.request("GET", url, headers = { "Authorization": "Bearer {{token}}"})print(response.text)