> 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: Review Requests # Type: Review Request Object # Link: https://dev.wix.com/docs/api-reference/crm/community/feedback-moderation/reviews/review-requests/review-request-object.md ## Description: A review request is a request sent to a customer to solicit a review for a specific order or specific items. ## Schema: ```json Type: Review Request Object | type: ReviewRequest Description: A review request is a request sent to a customer to solicit a review for a specific order or specific items. - name: id | type: string | description: Review request ID. - name: value | type: string | description: - name: revision | type: string | description: Revision number, which increments by 1 each time the review request is updated. To prevent conflicting changes, the current revision must be passed when updating the review request. Ignored when creating a review request. - name: value | type: string | description: - name: createdDate | type: string | description: Date and time the review request was created. - name: seconds | type: string | description: - name: nanos | type: number | description: - name: updatedDate | type: string | description: Date and time the review request was last updated. - name: sendDate | type: string | description: Date and time the review request was, or will be, sent. This field is only informational and does not trigger a send action. - name: namespace | type: string | description: Name of the Wix app whose catalog the items being reviewed belong to. Supported values: + Wix Stores: `stores` Currently, only Wix Stores is fully integrated with the Wix Reviews app. - name: order | type: Order | description: Order that a review is requested for. - name: id | type: string | description: Order ID. - name: items | type: Array | description: Items that a review is requested for. - name: catalogItemId | type: string | description: ID of the item within the catalog it belongs to. For example, `product.id` for items from the Stores Catalog API. - name: reviewId | type: string | description: ID of the review created for this item by the review request recipient. - name: recipient | type: Recipient | description: Customer to send a review request to. - name: contactId | type: string | description: Recipient contact ID. See the Contacts API for more information. - name: communicationChannel | type: string | description: Communication channel for sending the review request. enum: EMAIL - name: status | type: string | description: Review request status. enum: UNKNOWN_REVIEW_REQUEST_STATUS, SCHEDULED, CANCELED, FAILED, SENT - name: automationActivationId | type: string | description: ID of the automation action that triggered the review request to be created. This field is only used if a review request was created by the [automation included with Wix Reviews](https://support.wix.com/en/article/wix-stores-adding-and-setting-up-wix-reviews#step-3-optional-customize-review-requests). Also see the Automations API for more information. - name: requestedBy | type: IdentificationData | description: ID of the user or app that generated the review request. - name: identityType | type: string | description: Identity type. enum: WIX_USER, APP ```