curl --request GET \
--url 'https://api.scanova.io/forms/minimal/' \
--header 'Authorization: YOUR_API_KEY'
[
{
"id": 376,
"form_id": "F8a9b0c1d2e3f4g5h",
"name": "Booth Signup",
"created_by": "Docs",
"created": "2026-08-16T20:46:12.554000+05:30",
"form_url": "https://new.scnv.io/form/F8a9b0c1d2e3f4g5h"
}
]
Leads & Formulare
Formulare auflisten (minimal)
GET /forms/minimal/
GET
/
forms
/
minimal
/
curl --request GET \
--url 'https://api.scanova.io/forms/minimal/' \
--header 'Authorization: YOUR_API_KEY'
[
{
"id": 376,
"form_id": "F8a9b0c1d2e3f4g5h",
"name": "Booth Signup",
"created_by": "Docs",
"created": "2026-08-16T20:46:12.554000+05:30",
"form_url": "https://new.scnv.io/form/F8a9b0c1d2e3f4g5h"
}
]
Gibt eine schlanke Liste aktiver Formulare zurück — nützlich, um eine Auswahl „Formular wählen” zu befüllen (z. B. bei der Konfiguration einer Formular-Benachrichtigung) ohne die schwereren Detailfelder.
Die Antwort ist ein flaches Array, nicht paginiert, und enthält nur Formulare, bei denen
Erfordert einen Management-API-Schlüssel mit
MANAGEMENT_API- (oder MANAGEMENT_API_SANDBOX-)Quota, gesendet als roher Authorization-Header-Wert — siehe die Übersicht über die Management API.string
Teilstring-Abgleich gegen den Formularnamen.
string
Filtert auf eine exakte
form_id.curl --request GET \
--url 'https://api.scanova.io/forms/minimal/' \
--header 'Authorization: YOUR_API_KEY'
[
{
"id": 376,
"form_id": "F8a9b0c1d2e3f4g5h",
"name": "Booth Signup",
"created_by": "Docs",
"created": "2026-08-16T20:46:12.554000+05:30",
"form_url": "https://new.scnv.io/form/F8a9b0c1d2e3f4g5h"
}
]
is_active true ist — verwenden Sie Formulare auflisten für die vollständige paginierte Liste, einschließlich inaktiver Formulare und der schwereren Detailfelder (entries_count, conversion, linked_qrs usw.).
Verwandte Themen
- Formulare auflisten — die vollständige paginierte Liste.
- Formular abrufen — die vollständige Detailform für einen Eintrag hier.
- Übersicht über die Management API — das Authentifizierungsschema und die Quota-Architektur, zu der dieser Endpunkt gehört.
Autorisierungen
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.
Antwort
200
Minimal-shape list of active forms.
War diese Seite hilfreich?