Get Form Submissions
This endpoint allows you to get form submissions for a specific template from your community.
Get Form Submissions
POST
https://api.sonorancms.com/forms/get_template_submissions
Get all form submissions for a specific template with pagination
Request Body
Name
Type
Description
id*
string
Community ID
key*
string
API Key
type*
string
GET_FORM_TEMPLATE_SUBMISSIONS
data*
array
Array of request objects
[
{
...
}
]
{
"id": "YOUR_COMMUNITY_ID",
"key": "YOUR_API_KEY",
"type": "GET_FORM_TEMPLATE_SUBMISSIONS",
"data": [
{
"templateId": 1,
"skip": 0,
"take": 50, // Capped at 50
}
]
}
Template ID
The templateId
number can be taken from the form editor's URL when editing a form template.

Last updated
Was this helpful?