Manual

Responses

Understand how Formlism stores and exposes form responses.

Formlism stores completed submissions as responses. Each response belongs to a form, can include a respondent email, and contains a JSON object keyed by the form's question identifiers.

Response shape

Developer responses include id, form_id,respondent_email, submitted_at, responses,score_total, and score_breakdown.

Read responses

Use GET /api/developer/forms/:formId/responses for paginated response reads. The endpoint supports limit, offset, andsince query parameters.

Metadata

Use GET /api/developer/forms/:formId/metadata when you only need counts and timestamps. It returns question count, response count, latest response time, and form timestamps.