curl --request GET \
--url 'https://api.scanova.io/webhook/types/' \
--header 'Authorization: YOUR_API_KEY'
[
{
"type": "lead",
"label": "Lead Notification Webhook",
"required_fields": ["urls", "lead_list"],
"quota_codename": "INTEGRATION_WEBHOOK",
"is_oauth": false,
"failure_threshold": 10
},
{
"type": "hubspot",
"label": "HubSpot",
"required_fields": ["hubspot_connection"],
"quota_codename": "INTEGRATION_HUBSPOT",
"is_oauth": true,
"failure_threshold": 10
}
]
Integrations
List integration types
GET /webhook/types/
GET
/
webhook
/
types
/
curl --request GET \
--url 'https://api.scanova.io/webhook/types/' \
--header 'Authorization: YOUR_API_KEY'
[
{
"type": "lead",
"label": "Lead Notification Webhook",
"required_fields": ["urls", "lead_list"],
"quota_codename": "INTEGRATION_WEBHOOK",
"is_oauth": false,
"failure_threshold": 10
},
{
"type": "hubspot",
"label": "HubSpot",
"required_fields": ["hubspot_connection"],
"quota_codename": "INTEGRATION_HUBSPOT",
"is_oauth": true,
"failure_threshold": 10
}
]
Metadata for every supported
Webhook.type — label, required fields, quota codename, and whether it’s OAuth-based. Lets a client enumerate/validate types without hand-maintaining a shadow copy of what the backend already knows.
Requires a Management API key only — no additional permission gate.
curl --request GET \
--url 'https://api.scanova.io/webhook/types/' \
--header 'Authorization: YOUR_API_KEY'
[
{
"type": "lead",
"label": "Lead Notification Webhook",
"required_fields": ["urls", "lead_list"],
"quota_codename": "INTEGRATION_WEBHOOK",
"is_oauth": false,
"failure_threshold": 10
},
{
"type": "hubspot",
"label": "HubSpot",
"required_fields": ["hubspot_connection"],
"quota_codename": "INTEGRATION_HUBSPOT",
"is_oauth": true,
"failure_threshold": 10
}
]
is_oauth: true marks types whose connection is established through the browser OAuth flow in the dashboard, not through this API — see the Management API overview for which parts of Slack/HubSpot integration are and aren’t available here. failure_threshold is the number of consecutive delivery failures before the webhook is automatically disabled (its status becomes stopped and last_used_status records the reason).
Related
- List / create webhooks —
typeis required on create. - 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
Metadata for every supported webhook type.
Was this page helpful?