Answers/Can I edit form submissions from a dashboard?

Can I edit form submissions from a dashboard?

Updated March 2026

Yes. Use the action_table widget to create an interactive admin panel.

action_table extends data_table with inline editable dropdowns. Define which fields are editable and what options they have. When you change a dropdown, the submission is updated via PATCH.

Example DSL: {"type": "action_table", "title": "Support Tickets", "columns": ["subject", "email", "category"], "editableFields": [{"field": "ticket_status", "options": ["new", "open", "in-progress", "resolved", "closed"]}], "limit": 50, "sort": "newest"}

Constraints: - Requires a form data source (formId). Does not work with inline JSON or CSV. - Dashboard must be private (isPublic: false). Action tables allow editing, so they cannot be publicly accessible. - Rows with an email field show a Delete button to remove submissions by email. - Up to 10 editable fields per widget, each with up to 50 options.

Use cases: support ticket triage, order fulfillment tracking, content moderation, event check-in.

Ready to build?

Get a trial API key instantly — no signup required.

Can I edit form submissions from a dashboard? — Sutrena | Sutrena