getReview
Fetch a single review record by ID. Use for investigating specific reviews from moderation notifications or support tickets.
Instructions
Get a single review - Fetch a single review record. Read-only.
Lean by default: review_description is truncated to the first 500 chars + … when longer (tagged review_description_truncated: true). Pass include_full_text=1 to get the complete body. For a single-record inspection this is usually the right call.
Use when: investigating one specific review (usually from a moderation notification or support ticket that includes the review_id). For bulk moderation use listReviews with review_status filter.
Required: review_id.
See also: listReviews (enumerate many; supports keyword filter via property=review_description property_operator=LIKE).
Returns: { status: "success", message: [{...record}] } - the message array contains 1 record when found. Empty or HTTP 404 when not found.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| review_id | Yes | ||
| include_full_text | No | Opt in to return the full `review_description` body. Default is lean: bodies over 500 chars are truncated and tagged `review_description_truncated: true`. Set `1` to get the complete body for this specific review. |