Update Review
PUT
/reviews/{review_id}This endpoint allows you to update a specific review by passing the review_id
as a path parameter.
Request
Indicates whether the review is published publicly and seen on the Merchant store front
{
"is_published": true
}
Request samples
[api.label.responses]
Response status code, a numeric or alphanumeric identifier used to convey the outcome or status of a request, operation, or transaction in various systems and applications, typically indicating whether the action was successful, encountered an error, or resulted in a specific condition.
Response flag, boolean indicator used to signal a particular condition or state in the response of a system or application, often representing the presence or absence of certain conditions or outcomes.
A unique identifier associated with a specific review. List of reviews can be found here.
Review Type
Review Rating value
Review Content
Review Order ID. List of orders can be found here
Indicates whether the review is published publicly and seen on the Merchant store front
String representation of the review original creation date and time
{
"status": 200,
"success": true,
"data": {
"id": 1096828836,
"type": "ask",
"rating": 0,
"content": "A question",
"order_id": null,
"is_published": true,
"created_at": "2023-11-01 15:32:31",
"customer": {
"id": 1227534533,
"name": "Ahmed Ali",
"mobile": 565555555,
"email": "[email protected]",
"avatar": "https://cdn.assets.salla.network/admin/cp/assets/images/avatar_male.png",
"country": "السعودية",
"city": "الرياض"
}
}
}