List published forms
GET
/forms/v1/sdk/forms
const url = 'https://api.ebitex.io/forms/v1/sdk/forms';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.ebitex.io/forms/v1/sdk/forms \ --header 'Authorization: Bearer <token>'Lists the organization’s published forms, each with its externalId and locale-resolved name. Draft and archived forms are not listed.
Key: a Forms SDK key with forms.sdk.forms.read.
Authorizations
Section titled “Authorizations”Responses
Section titled “ Responses ”{ "forms": [{ "externalId": "contact-us", "name": "Contact us" }] }
missing_api_key or invalid_api_key: no key was sent, or it is unknown, revoked or expired.
payment_required: the organization’s subscription needs attention.
scope_denied: the key lacks forms.sdk.forms.read. ip_denied: the caller’s address is outside the key’s allowed ranges.
Rate limit or per-minute quota exceeded; Retry-After says how long to wait. too_many_failed_authentications: too many bad keys from this address.