> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # GetSubmission # Package: forms # Namespace: FormSubmissionService # Method link: https://dev.wix.com/docs/api-reference/crm/forms/form-submissions/get-submission.md ## Permission Scopes: Read Submissions: SCOPE.DC-FORMS.READ-SUBMISSIONS ## Introduction > **Note:** The Form Submission API only works with the Wix Forms app. Call [GetAppInstance](https://dev.wix.com/docs/rest/api-reference/app-management/apps/app-instance/get-app-instance.md) to confirm that the app named `wix_forms` is installed on the site.
Retrieves a submission by ID. --- ## REST API ### Schema ``` Method: getSubmission Description: > **Note:** The Form Submission API only works with the Wix Forms app. Call [GetAppInstance](https://dev.wix.com/docs/rest/api-reference/app-management/apps/app-instance/get-app-instance.md) to confirm that the app named `wix_forms` is installed on the site.
Retrieves a submission by GUID. URL: https://www.wixapis.com/v4/submissions/{submissionId} Method: GET # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: submissionId Method parameters: param name: submissionId | type: none | required: true Return type: GetSubmissionResponse - name: submission | type: FormSubmission | description: The retrieved submission. - name: id | type: string | description: Submission GUID. - name: formId | type: string | description: GUID of the form which the submission belongs to. - name: namespace | type: string | description: The app which the form submissions belong to. For example, the namespace for the Wix Forms app is `wix.form_app.form`. Call `Get Submission` to retrieve the namespace. - name: status | type: SubmissionStatus | description: Status of the submission. - enum: - PENDING: A submission is created, but has not yet been recorded in the Wix Forms collection. - CONFIRMED: A submission is recorded in the Wix Forms collection. - PAYMENT_WAITING: A form submission requiring payment is created. - PAYMENT_CANCELED: An order of a form submission is canceled. - name: submissions | type: Map | description: Submission values where `key` is the form field and `value` is the data submitted for the given field. - ONE-OF: - name: nullValue | type: | description: - name: numberValue | type: number | description: - name: stringValue | type: string | description: - name: boolValue | type: boolean | description: - name: structValue | type: object | description: - name: listValue | type: ListValue | description: - name: values | type: array | description: - name: createdDate | type: string | description: Date and time the form submission was created. - name: updatedDate | type: string | description: Date and time the form submission was updated. - name: revision | type: string | description: Revision number, which increments by 1 each time the form submission is updated. To prevent conflicting changes, the existing revision must be used when updating a form submission. - name: submitter | type: Submitter | description: GUID of the visitor that submitted the form. - ONE-OF: - name: memberId | type: string | description: Member GUID. - name: visitorId | type: string | description: Visitor GUID. - name: applicationId | type: string | description: Application GUID. - name: userId | type: string | description: User GUID. - name: seen | type: boolean | description: Whether a site owner marked a submission as "seen". - name: extendedFields | type: ExtendedFields | description: Data extension object that holds users' and apps' fields. - name: namespaces | type: object | description: Extended field data. Each key corresponds to the namespace of the app that created the extended fields. The value of each key is structured according to the schema defined when the extended fields were configured. You can only access fields for which you have the appropriate permissions. Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields.md). - name: orderDetails | type: OrderDetails | description: Order details.
Note: This object is only applicable when submitting a form in the Wix Payments app. - name: orderId | type: string | description: GUID of the order related to submission (only applicable if a form has payments). - name: number | type: string | description: Order number. - name: currency | type: string | description: Currency. - name: itemSubtotal | type: string | description: Item subtotal. - name: checkoutId | type: string | description: GUID of the checkout related to submission (only applicable if a form has payments). - name: contactId | type: string | description: Contact GUID of a site visitor who created the submission. - name: accessRestriction | type: string | description: Authorized viewer GUID. - name: tags | type: PublicTags | description: Tag GUIDs collections associated with the current entity. - name: tags | type: TagList | description: Tags that are exposed to anyone who has access to the labeled entity itself, including site members and visitors. - name: tagIds | type: array | description: List of tag GUIDs - name: appointmentDetails | type: AppointmentDetails | description: Appointment details. This object is only applicable when submitting a form that creates a booking appointment. - name: staffMemberId | type: string | description: GUID of the staff member assigned to the appointment. - name: staffMemberName | type: string | description: Name of the staff member assigned to the appointment. ``` ### Examples ### GetSubmission ```curl ~~~cURL curl -X GET \ 'http://www.wixapis.com/form-submission/v4/submissions/e62e3011-55cf-4de3-a497-e097b52d86b7' \ -H 'Content-Type: application/json' \ -H 'Authorization: ' ~~~ ``` --- ## JavaScript SDK ### Schema ``` Method: wixClientAdmin.forms.FormSubmissionService.getSubmission(submissionId) Description: > **Note:** The Form Submission API only works with the Wix Forms app. Call [GetAppInstance](https://dev.wix.com/docs/rest/api-reference/app-management/apps/app-instance/get-app-instance.md) to confirm that the app named `wix_forms` is installed on the site.
Retrieves a submission by GUID. # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: submissionId Method parameters: param name: submissionId | type: string | description: GUID of the submission to retrieve. | required: true Return type: PROMISE - name: _id | type: string | description: Submission GUID. - name: formId | type: string | description: GUID of the form which the submission belongs to. - name: namespace | type: string | description: The app which the form submissions belong to. For example, the namespace for the Wix Forms app is `wix.form_app.form`. Call `Get Submission` to retrieve the namespace. - name: status | type: SubmissionStatus | description: Status of the submission. - enum: - PENDING: A submission is created, but has not yet been recorded in the Wix Forms collection. - CONFIRMED: A submission is recorded in the Wix Forms collection. - PAYMENT_WAITING: A form submission requiring payment is created. - PAYMENT_CANCELED: An order of a form submission is canceled. - name: submissions | type: Map | description: Submission values where `key` is the form field and `value` is the data submitted for the given field. - ONE-OF: - name: nullValue | type: | description: - name: numberValue | type: number | description: - name: stringValue | type: string | description: - name: boolValue | type: boolean | description: - name: structValue | type: object | description: - name: listValue | type: ListValue | description: - name: values | type: array | description: - name: _createdDate | type: Date | description: Date and time the form submission was created. - name: _updatedDate | type: Date | description: Date and time the form submission was updated. - name: revision | type: string | description: Revision number, which increments by 1 each time the form submission is updated. To prevent conflicting changes, the existing revision must be used when updating a form submission. - name: submitter | type: Submitter | description: GUID of the visitor that submitted the form. - ONE-OF: - name: memberId | type: string | description: Member GUID. - name: visitorId | type: string | description: Visitor GUID. - name: applicationId | type: string | description: Application GUID. - name: userId | type: string | description: User GUID. - name: seen | type: boolean | description: Whether a site owner marked a submission as "seen". - name: extendedFields | type: ExtendedFields | description: Data extension object that holds users' and apps' fields. - name: namespaces | type: object | description: Extended field data. Each key corresponds to the namespace of the app that created the extended fields. The value of each key is structured according to the schema defined when the extended fields were configured. You can only access fields for which you have the appropriate permissions. Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields.md). - name: orderDetails | type: OrderDetails | description: Order details.
Note: This object is only applicable when submitting a form in the Wix Payments app. - name: orderId | type: string | description: GUID of the order related to submission (only applicable if a form has payments). - name: number | type: string | description: Order number. - name: currency | type: string | description: Currency. - name: itemSubtotal | type: string | description: Item subtotal. - name: checkoutId | type: string | description: GUID of the checkout related to submission (only applicable if a form has payments). - name: contactId | type: string | description: Contact GUID of a site visitor who created the submission. - name: accessRestriction | type: string | description: Authorized viewer GUID. - name: tags | type: PublicTags | description: Tag GUIDs collections associated with the current entity. - name: tags | type: TagList | description: Tags that are exposed to anyone who has access to the labeled entity itself, including site members and visitors. - name: tagIds | type: array | description: List of tag GUIDs - name: appointmentDetails | type: AppointmentDetails | description: Appointment details. This object is only applicable when submitting a form that creates a booking appointment. - name: staffMemberId | type: string | description: GUID of the staff member assigned to the appointment. - name: staffMemberName | type: string | description: Name of the staff member assigned to the appointment. ``` ### Examples ### Get a submission (with elevated permissions) ```javascript import { submissions } from '@wix/forms'; import { auth } from '@wix/essentials'; /* Sample submissionId value: "abb9b5c9-a881-467c-9c34-b9bea43ca5f0" */ const elevatedGetSubmission = auth.elevate(submissions.getSubmission); export async function myGetSubmissionFunction(submissionId) { try { const submission = await elevatedGetSubmission(submissionId); console.log('Success! Submission:', submission); return submission; } catch (error) { console.error(error); // Handle the error } } /* Promise resolves to: { "formId": "21bcb6c7-02b3-4ed1-b6db-7856094fac03", "namespace": "wix.form_app.form", "status": "CONFIRMED", "submissions": { "last_name": "Doe", "first_name": "John" }, "revision": "4", "submitter": { "applicationId": "151e476a-715e-ec33-db9a-a7ff4d51f70a" }, "seen": true, "_id": "abb9b5c9-a881-467c-9c34-b9bea43ca5f0", "_createdDate": "2023-12-28T12:54:04.652Z", "_updatedDate": "2023-12-28T13:42:24.856Z" } */ ``` ### Get a submission ```javascript import { submissions } from '@wix/forms'; /* Sample submissionId value: "abb9b5c9-a881-467c-9c34-b9bea43ca5f0" */ export async function myGetSubmissionFunction(submissionId) { try { const submission = await submissions.getSubmission(submissionId); console.log('Success! Submission:', submission); return submission; } catch (error) { console.error(error); // Handle the error } } /* Promise resolves to: { "formId": "21bcb6c7-02b3-4ed1-b6db-7856094fac03", "namespace": "wix.form_app.form", "status": "CONFIRMED", "submissions": { "last_name": "Doe", "first_name": "John" }, "revision": "4", "submitter": { "applicationId": "151e476a-715e-ec33-db9a-a7ff4d51f70a" }, "seen": true, "_id": "abb9b5c9-a881-467c-9c34-b9bea43ca5f0", "_createdDate": "2023-12-28T12:54:04.652Z", "_updatedDate": "2023-12-28T13:42:24.856Z" } */ ``` ### getSubmission (self-hosted) Self-hosted SDK calls require you to [create a client](https://dev.wix.com/docs/sdk/articles/work-with-the-sdk/about-the-wix-client.md). ```javascript import { createClient } from '@wix/sdk'; import { submissions } from '@wix/forms'; // Import the auth strategy for the relevant access type // Import the relevant host module if needed const myWixClient = createClient ({ modules: { submissions }, // Include the auth strategy and host as relevant }); async function getSubmission(submissionId) { const response = await myWixClient.submissions.getSubmission(submissionId); }; ``` ---