Note: The Form Submission API only works with the Wix Forms app. Call GetAppInstance to confirm that the app named wix_forms
is installed on the site.
Creates a new submission.
Submission to create.
Captcha token.
The created submission.
curl -X POST \
'http://www.wixapis.com/form-submission/v4/submissions' \
-H 'Content-Type: application/json' \
-H 'Authorization: <AUTH>' \
-d '{
"submission": {
"formId": "e62e3011-55cf-4de3-a497-e097b52d86b8",
"submissions": {
"first_name": "Adam",
"last_name": "Fisher"
}
}
}'
{
"submission": {
"id": "e62e3011-55cf-4de3-a497-e097b52d86b7",
"formId": "e62e3011-55cf-4de3-a497-e097b52d86b8",
"namespace": "wix.form_app.form",
"status": "PENDING",
"submissions": {
"first_name": "Adam",
"last_name": "Fisher"
},
"submitter": {
"memberId": "4b42fb49-8c77-4128-859c-8247756f68ef"
},
"seen": false,
"revision": 1,
"createdDate": "2019-10-30T17:22:10.299Z",
"updatedDate": "2019-10-30T17:22:10.299Z"
}
}
There is 1 error with this status code.
There is 1 error with this status code.
There are 2 errors with this status code.
There is 1 error with this status code.
This method may also return standard errors. Learn more about standard Wix errors.