| review_id | integer The unique review ID. |
| product_id | integer The product this review applies to. |
| user_id | integer The user, if applicable, that posted this review. Use 0 for no user connection (or guest). |
| approved | boolean If true, this is approved and shows on the store. |
| rating | integer The rating (1-5) of the review. |
| title | string The review title by the customer. |
| review_description | string The content of the review. |
| date_submitted | string The timestamp of when the review was submitted. |
| reviewer_name | string The name entered for the reviewer (if applicable). |
{- "review_id": 0,
- "product_id": 0,
- "user_id": 0,
- "approved": true,
- "rating": 0,
- "title": "string",
- "review_description": "string",
- "date_submitted": "string",
- "reviewer_name": "string"
}This allows you to get a list of customer reviews
Successful operation
Unauthorized
[- {
- "review_id": 0,
- "product_id": 0,
- "user_id": 0,
- "approved": true,
- "rating": 0,
- "title": "string",
- "review_description": "string",
- "date_submitted": "string",
- "reviewer_name": "string"
}
]This allows you to add a new customer review
Submit any or all elements to add a new customer review.
Successful operation
Unauthorized
{- "product_id": 0,
- "user_id": 0,
- "approved": true,
- "rating": 0,
- "title": "string",
- "review_description": "string",
- "date_submitted": "string",
- "reviewer_name": "string"
}{- "review_id": 0,
- "product_id": 0,
- "user_id": 0,
- "approved": true,
- "rating": 0,
- "title": "string",
- "review_description": "string",
- "date_submitted": "string",
- "reviewer_name": "string"
}This allows you to get a customer review from your store by review ID
Successful operation
Unauthorized
{- "review_id": 0,
- "product_id": 0,
- "user_id": 0,
- "approved": true,
- "rating": 0,
- "title": "string",
- "review_description": "string",
- "date_submitted": "string",
- "reviewer_name": "string"
}This allows you to update a customer review
Submit any or all elements to update the customer review.
Successful operation
Unauthorized
{- "product_id": 0,
- "user_id": 0,
- "approved": true,
- "rating": 0,
- "title": "string",
- "review_description": "string",
- "date_submitted": "string",
- "reviewer_name": "string"
}{- "review_id": 0,
- "product_id": 0,
- "user_id": 0,
- "approved": true,
- "rating": 0,
- "title": "string",
- "review_description": "string",
- "date_submitted": "string",
- "reviewer_name": "string"
}This allows you to delete a customer review from your store
Successful operation
Unauthorized
{- "review_id": 0,
- "product_id": 0,
- "user_id": 0,
- "approved": true,
- "rating": 0,
- "title": "string",
- "review_description": "string",
- "date_submitted": "string",
- "reviewer_name": "string"
}