Get all reviews
GET/v3/reputation/reviews
Get all reviews
Request
Query Parameters
app_platform_id numberrequired
Id of AppPlatform
rating.lte number
Possible values: >= 1 and <= 5
Rating greater than filer is optional
rating.gte number
Possible values: >= 1 and <= 5
Rating less than filter is optional
review_date.lte date
less than filter is optional
review_date.gte date
greater than filer is optional
limit number
Possible values: >= 1 and <= 50
Default value: 50
Number of records you would like in a request
page number
Possible values: >= 1
Default value: 1
Page of results
Responses
- 200
 
Successful
- */*
 
- Schema
 - Example (from schema)
 
Schema
Array [
]
has_next_page boolean
data
object[]
id number
rating number
review_title string
review_content string
review_date date
reviewer_name string
reviewer_photo_url string
app_platform_id number
{
  "has_next_page": true,
  "data": [
    {
      "id": 1,
      "rating": 5,
      "review_title": "Good Service",
      "review_content": "Outstanding service, consistently exceeding expectations",
      "review_date": "2022-02-28T07:25:44.268Z",
      "reviewer_name": "Sam",
      "reviewer_photo_url": "https://www.log_url.com/agoda",
      "app_platform_id": 5
    }
  ]
}
Loading...