Overview

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).


🌐 Base URL Format

{baseurl}/rest/freshforms/1.0/page/{pageId}/form/{formId}

Example base URL:

https://confluence.example.com/rest/freshforms/1.0/page/123/form/feedbackForm


📋 Summary Table

ActionAPI Example PathPurpose
View all submissions/rest/freshforms/1.0/page/123/form/feedbackform/submissionSee all responses
View one submission/rest/freshforms/1.0/page/123/form/feedbackform/submission/1See 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