curl --request GET \
--url 'https://api.scanova.io/webhook/stats/' \
--header 'Authorization: YOUR_API_KEY'
{
"sub_type_count": { "lead": 3, "form": 1, "zapier": 2 },
"total": 6
}
Integrations
Webhook counts by sub-type
GET /webhook/stats/
GET
/
webhook
/
stats
/
curl --request GET \
--url 'https://api.scanova.io/webhook/stats/' \
--header 'Authorization: YOUR_API_KEY'
{
"sub_type_count": { "lead": 3, "form": 1, "zapier": 2 },
"total": 6
}
Counts the account’s webhooks grouped by
For a fuller breakdown (active/inactive/awaiting-first-event, disabled connections, OAuth reauth status), see Integrations overview instead.
sub_type.
Requires authentication only.
curl --request GET \
--url 'https://api.scanova.io/webhook/stats/' \
--header 'Authorization: YOUR_API_KEY'
{
"sub_type_count": { "lead": 3, "form": 1, "zapier": 2 },
"total": 6
}
Related
- Integrations overview
- List / create webhooks
- Management API overview — the auth scheme and quota architecture this endpoint is part of.
Authorizations
Send your Management API key as the raw value of the Authorization header — no "Bearer " or "Token " prefix, and no other characters. Example: Authorization: 401f7ac837da42b97f613d789819ff93537bee6a. A header containing more than one space-separated part is rejected outright. Requests also require the request's Host header to be the management API host (e.g. api.scanova.io) — the same key sent to the regular API host will not authenticate.
Response
200 - application/json
Counts grouped by sub_type.
Was this page helpful?