Title here
Summary here
This guide helps users interact with the FreshForms rest API to:
✅ View All Submissions for a Form
✅ View a Specific Submission
✅ Update a Submission
✅ Create a New Submission
You can use tools like curl, Postman, or a browser (with proper authorization).
{baseurl}/rest/freshforms/1.0/page/{pageId}/form/{formId}
Example base URL:
https://confluence.example.com/rest/freshforms/1.0/page/123/form/feedbackForm
| Action | API Example Path | Purpose |
|---|---|---|
| View all submissions | /rest/freshforms/1.0/page/123/form/feedbackform/submission | See all responses |
| View one submission | /rest/freshforms/1.0/page/123/form/feedbackform/submission/1 | See one response |
| Update submission | /rest/freshforms/1.0/page/123/form/feedbackform/submission/1 (PUT with JSON) | Edit a response |
| Create submission | /rest/freshforms/1.0/page/123/form/feedbackform/submission (POST with JSON) | Add new response |