FormList
A cursor-paginated page of forms.
- dataType: array object[] · Form[]required
The forms on this page.
A form as seen by its owner, including lifecycle status and ownership timestamps.
- createdType: string
At requiredISO 8601 timestamp of when the form was created.
- descriptionType: string | nullrequired
The form’s description, or
nullif none was set. - fieldsType: array · Field[] …100required
Ordered list of a form’s fields (max 100). Field
keys must be unique within the form. The order here is the order fields render on the public page. - idType: stringrequired
Unique form identifier (prefixed
frm_). - slugType: string | nullrequired
The form’s slug, or
nullif none was set. - statusType: string enumrequired
Lifecycle state.
draftforms are private (not publicly viewable or submittable);publishedforms accept public submissions;closedforms are viewable but reject new submissions.values- draft
- published
- closed
- titleType: stringmin length:1max length:200required
Form title, shown as the heading on the public form page.
- updatedType: string
At requiredISO 8601 timestamp of the form’s last modification.
- nextType: string | null
Cursor requiredCursor for the next page, or
nullwhen there are no more results. Also exposed as an RFC 8288Link: …; rel="next"header.