Get Product Review Comment
Function
To retrieve one of the product review comments by id.
以id抓取某一商品評價。
URL
GET <<api_domain>>/v1/product_review_comments/:product_review_comment_id
Request parameters
Parameter | Type | Description | Example |
|---|---|---|---|
product_review_comment_id |
| Product review comment id |
|
Response fields
Field | Type | Description | Example |
|---|---|---|---|
id |
| Product review comment id |
|
product_id |
| Product id |
|
order_id |
| Order id |
|
user_id |
| User id |
|
user_name |
| User name |
|
status |
| Status
|
|
score |
| Score |
|
comment |
| Comment |
|
media |
| Media Data | |
created_by |
| Channel that created the product review comment
|
|
commented_at |
| Commented time
|
|
updated_at |
| Updated time
|
|
created_at |
| Created time
|
|
Response Example
{
"id": "5f6d742ce38809bd9fcc438b",
"product_id": "5f57251ce38809bde9681c3b",
"order_id": "5f686623e38809c8ed14b1ea",
"user_id": "5f602e9c01afcd34f53db613",
"user_name": "Ming",
"status": "hidden",
"score": 1,
"comment": "Hello",
"media": [],
"created_by": "importer",
"commented_at": "2020-09-25T04:38:04.203+00:00",
"updated_at": "2020-09-25T04:38:04.203+00:00",
"created_at": "2020-09-25T04:38:04.203+00:00"
}Updated 13 days ago