Light Mode
Review Details
GET
/reviews/{review_id}Last modified: a month ago
This endpoint allows you to fetch a specific review by passing the review_id
as a path parameter.
Request
Path Params
review_id
integer
required
Unique identifier assigned to a Review. List of Review IDs can be found here
Example:
677156713
Request samples
Responses
Success(200)
Unauthorized(401)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
status
number
optional
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.
success
boolean
optional
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.
data
#/definitions/1389362optional
Example
{
"status": 200,
"success": true,
"data": {
"id": 1096828836,
"type": "ask",
"rating": 0,
"content": "A question",
"order_id": 87564932,
"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": "الرياض"
}
}
}
Last modified: a month ago