API Reference
Form Sections
Group questions into sections within a form.
Form Sections
Group questions into sections within a form.
Endpoints
GET
/api/v1/forms/{id}/sectionsList sections
Required scope:read:forms
client.forms.byId("ID").sections.get()POST
/api/v1/forms/{id}/sectionsCreate section
Required scope:write:forms
client.forms.byId("ID").sections.post(body)PUT
/api/v1/forms/{id}/sections/{sid}Update section
Required scope:write:forms
client.forms.byId("ID").sections.bySid("SID").put(body)DELETE
/api/v1/forms/{id}/sections/{sid}Delete section
Required scope:write:forms
client.forms.byId("ID").sections.bySid("SID").delete()This page is auto-generated from the OpenAPI spec. Run npm run docs:generate to update.