Skip to main content
Formalingo
API Reference

Form Questions

Add and manage questions within a form.

Form Questions

Add and manage questions within a form.

Endpoints

GET/api/v1/forms/{id}/questions

List questions

Required permissions:forms:read
client.forms.byId("ID").questions.get()
POST/api/v1/forms/{id}/questions

Create question

Required permissions:forms:write
client.forms.byId("ID").questions.post(body)
PUT/api/v1/forms/{id}/questions/{qid}

Update question

Required permissions:forms:write
client.forms.byId("ID").questions.byQid("QID").put(body)
DELETE/api/v1/forms/{id}/questions/{qid}

Delete question

Required permissions:forms:write
client.forms.byId("ID").questions.byQid("QID").delete()

This page is auto-generated from the OpenAPI spec. Run npm run docs:generate to update.

On this page

Copy this page as Markdown to use with AI tools.