Create a Submission
Creates a new submission to the form with the permalink given. The request's data should be formatted as Field Data.
The permalink parameter should be the form's 10-character permalink as it appears in URLs like /forms/XXXXXXXXXX/responses
. The brackets are included to highlight the parameter, and should not be included in the actual URL.
POST https://forms.sonadier.com/api/v1/forms/[permalink]/submissions/new
Read a Submission's Data
Reads a submission to the form with the permalink given.
The permalink and submission_permalink parameters should be the form and submission's 10-character permalinks as they appear in URLs like /forms/FORM_PERMALINK/responses/SUBMISSION_PERMALINK
. The brackets are included to highlight the parameters, and should not be included in the actual URL.
GET https://forms.sonadier.com/api/v1/forms/[permalink]/submissions/[submission_permalink]
Update a Submission
Updates a submission to the form with the permalink given. The request's data should be formatted as Field Data.
The permalink and submission_permalink parameters should be the form and submission's 10-character permalinks as they appear in URLs like /forms/FORM_PERMALINK/responses/SUBMISSION_PERMALINK
. The brackets are included to highlight the parameters, and should not be included in the actual URL.
POST https://forms.sonadier.com/api/v1/forms/[permalink]/submissions/[submission_permalink]
Delete a Submission
Deletes a submission to the form with the permalink given.
The permalink and submission_permalink parameters should be the form and submission's 10-character permalinks as they appear in URLs like /forms/FORM_PERMALINK/responses/SUBMISSION_PERMALINK
. The brackets are included to highlight the parameters, and should not be included in the actual URL.
DELETE https://forms.sonadier.com/api/v1/forms/[permalink]/submissions/[submission_permalink]