> 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 # Resource: Form Submissions # Type: Submission Object # Link: https://dev.wix.com/docs/api-reference/crm/forms/form-submissions/submission-object.md ## Description: Form submission that was created or retrieved. ## Schema: ```json Type: Submission Object | type: FormSubmission Description: Form submission that was created or retrieved. - name: id | type: string | description: Submission ID. - name: value | type: string | description: - name: formId | type: string | description: ID 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: string | description: Status of the submission. enum: PENDING, CONFIRMED, PAYMENT_WAITING, PAYMENT_CANCELED - name: submissions | type: object | description: Submission values where `key` is the form field and `value` is the data submitted for the given field. - name: createdDate | type: string | description: Date and time the form submission was created. - name: seconds | type: string | description: - name: nanos | type: number | description: - 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: value | type: string | description: - name: submitter | type: Submitter | description: ID of the visitor that submitted the form. - 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: ID 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: ID of the checkout related to submission (only applicable if a form has payments). - name: contactId | type: string | description: Contact ID of a site visitor who created the submission. - name: accessRestriction | type: string | description: Authorized viewer ID. - name: tags | type: PublicTags | description: Tag IDs 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 IDs - 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: ID of the staff member assigned to the appointment. - name: staffMemberName | type: string | description: Name of the staff member assigned to the appointment. ```