> 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: Intake Form Submissions # Type: Intake Form Submission Object # Link: https://dev.wix.com/docs/api-reference/crm/forms/other-services/intake-forms/intake-form-submissions/intake-form-submission-object.md ## Description: A record representing a contact's completion of an intake form. Each submission has one of these statuses: `VALID`, `EXPIRED`, `CANCELED`, `EXTENDED`, or `EXEMPT`, with expiration and lifecycle management. ## Schema: ```json Type: Intake Form Submission Object | type: IntakeFormSubmission Description: A record representing a contact's completion of an intake form. Each submission has one of these statuses: `VALID`, `EXPIRED`, `CANCELED`, `EXTENDED`, or `EXEMPT`, with expiration and lifecycle management. - name: id | type: string | description: Intake form submission ID. Identical to the [Wix Forms form submission ID](https://dev.wix.com/docs/api-reference/crm/forms/form-submissions/submission-object.md). - name: value | type: string | description: - name: createdDate | type: string | description: Date and time the intake form submission was created in UTC datetime `YYYY-MM-DDThh:mm:ssZ` format. - name: seconds | type: string | description: - name: nanos | type: number | description: - name: revision | type: string | description: Revision number, which increments by 1 each time the intake form submission is updated. To prevent conflicting changes, you must specify the current revision when updating the intake form submission. - name: value | type: string | description: - name: signer | type: Signer | description: Information about the person who submitted the intake form. - name: contactId | type: string | description: [Contact](https://dev.wix.com/docs/api-reference/crm/members-contacts/contacts/contacts/introduction.md) ID. - name: fullName | type: string | description: Contact's full name. - name: email | type: string | description: Contact's email address. - name: submitter | type: string | description: Whether the form was submitted by the customer directly or by the business on the customer's behalf. enum: CUSTOMER, BUSINESS - name: status | type: string | description: Submission status. enum: VALID, EXPIRED, CANCELED, EXTENDED, EXEMPT - name: expirationDate | type: string | description: Date and time when the submission expires in UTC datetime `YYYY-MM-DDThh:mm:ssZ` format. Calculated from `createdDate` plus the intake form's `expirationPeriodInMonths`. You can manually extend the expiration date. - name: intakeFormInfo | type: IntakeFormInfo | description: Intake form information. Returned only when `INTAKE_FORM_INFO` is requested in the `fields` parameter. - name: id | type: string | description: Intake form ID. - name: name | type: string | description: Intake form name. - name: expirationPeriodInMonths | type: number | description: Expiration period in months for the intake form. - name: value | type: number | description: - name: archived | type: boolean | description: Whether the intake form is archived. - name: value | type: boolean | description: - name: updatedDate | type: string | description: Date and time the submission status was manually updated (canceled or extended) in UTC datetime `YYYY-MM-DDThh:mm:ssZ` format. ```