Getting app feedback
This method allows retrieving a list of all the latest reviews for your app or either a single review.
Key Points to Note:
-
By default, each page displays 20 reviews. However, you can customize this to display up to 100 reviews per page by specifying a value in the
size
parameter. -
It's important to be aware that you cannot apply pagination and filtering parameters to retrieve just one review. Pagination should be used with a combination of parameters such as
page
иsize
либоid
." -
If a user edits a review, the review is assigned an updated review
id
, and theedited
attribute is set totrue
. -
The default sorting order is based on the date the review was published, using the
updatedAt
parameter, with the most recent reviews appearing first.
Interaction parameters
GET
https://public-api.rustore.ru/public/v1/application/{packageName}/comment?id={id}&page={number}&size={size}
Attribute | Type | Required | Location | Description | Example |
---|---|---|---|---|---|
Public-Token | string | Yes | header | Access token to API RuStore. | N/A |
packageName | string | Yes | path | App package name Maximum length: 50 characters | com.myapp.example |
id | number | No | query | id of a specific review. Asked if you need to get specific feedback | 743103 |
page | number | No | query | Page No. Starts from 0 . | 0 |
size | number | No | query | Number of reviews on the page. Default - 20 . Maximum - 100 . | 100 |
Response example
Attribute | Type | Required | Description | Example |
---|---|---|---|---|
code | string | Yes | Response code | error /OK |
message | string | No | Decoded response code | N/A |
timestamp | timestamptz | Yes | Response time | 2022-07-08T13:24:41.8328711+03:00 |
body{} | object | Yes | N/A | N/A |
body
Attribute | Type | Required | Description | Example |
---|---|---|---|---|
packageName | string | Yes | App package name | com.myapp.example |
appId | number | Yes | App id | 385727 |
commentId | number | Yes | Reviewid | 697535 |
userName | string | Yes | Review author's name | Irina |
appRating | number | Yes | Review rating | 4 |
commentStatus | string | Yes | Review status | PUBLISHED |
commentDate | timestamptz | Yes | Review date | 2023-05-22 16:32:08.008 |
commentText | string | Yes | Review text | Awesome! |
likeCounter | number | Yes | Number of likes to a review from other users | 5 |
dislikeCounter | number | Yes | Number of dislikes for a review from other users | 0 |
updatedAt | timestamptz | Yes | Date of review moderation and publication | 2022-10-14 15:14:33.033 |
appVersionName | string | Yes | App version | 1.4 |
edited | boolean | Yes | Sign of review edits | • True - edited ( review was edited and rewritten). • False — was not edited. |
Example for multiple reviews
curl --location 'https://public-api.rustore.ru/public/v1/application/ru.voonsh.push/comment' \
--header 'Content-Type: application/json' \
--header 'Public-Token: eyJlbmMiOiJBMjU2R0NNIiwiYWxnIjoiUlNBLU9BRVAtMjU2In0.jrVl3YT99saGcata9fzN6_QpoQhDsv8oBUAj9p7UyR4Ga5PM8TTyNbpTKIeaIjGoEfsBMJx0aw0b7fhD04bhSp7SWEBKGBTzFCjwOZ5_Fcezq0-NOMSayzoPttYa7oMRDiqNS4rqaUOdCUrf9qlDyEq3BGoUYCaUD7L5399l51NhSLrWpoPx1l4ZLVJ5bjlhiCoPAtLArnulq5LBoDk3naoGaRHabkkffcucEjA45uNpCsq0fx77Lk4YhN30LOccyImE-O8fUq8YryMWv4w-ZmWjax1oT9nRgO95r9EYG7Gwdekg2ILuWnsofiMXME8t1EiEuUmDpNTEyS9SiUMRwQ.lSJBV1mSmHehuqVs.8pXL_GRLwEJgIWZOzkklKgrsGKKJrG9kv1AIdD0PPU8KtsY8GVAc5xaaQgeyjSsJiSUvma_IohAaIBwP-tjTRxrnzVinMhKAJMCbiMIVqsQSRDB5j_mf91nTNewQkWJwB33Rvxd9F4Tt-Tk-1QKALU8tAT_HXAI.v9WBgx8T6yFDpeMrjw-ECQ'
Response example
{
"code": "OK",
"message": null,
"body": [
{
"packageName": "ru.voonsh.push",
"appId": 227169215,
"commentId": 2142370751,
"userName": "Saber",
"appRating": 5,
"commentStatus": "PUBLISHED",
"commentDate": "2023-06-13 11:58:06.006",
"commentText": "Good App, nice done!",
"likeCounter": 0,
"dislikeCounter": 0,
"updatedAt": "2023-06-13 11:59:50.050",
"appVersionName": "1.4",
"edited": false
},
{
"packageName": "ru.voonsh.push",
"appId": 227169215,
"commentId": 1981700287,
"userName": "Victor",
"appRating": 5,
"commentStatus": "PUBLISHED",
"commentDate": "2023-04-27 18:54:27.027",
"commentText": "Nice app! ;#",
"likeCounter": 0,
"dislikeCounter": 0,
"updatedAt": "2023-04-27 18:55:30.030",
"appVersionName": "1.3",
"edited": false
},
{
"packageName": "ru.voonsh.push",
"appId": 227169215,
"commentId": 1981699775,
"userName": "Grigory",
"appRating": 5,
"commentStatus": "PUBLISHED",
"commentDate": "2023-04-27 18:54:18.018",
"commentText": "Nice app!
"likeCounter": 1,
"dislikeCounter": 0,
"updatedAt": "2023-04-27 18:55:30.030",
"appVersionName": "1.3",
"edited": false
},
{
"packageName": "ru.voonsh.push",
"appId": 227169215,
"commentId": 237681343,
"userName": "Ibrahim",
"appRating": 5,
"commentStatus": "PUBLISHED",
"commentDate": "2022-09-15 17:26:46.046",
"commentText": "Increasing the DAU)))",
"likeCounter": 1,
"dislikeCounter": 1,
"updatedAt": "2022-09-16 18:06:39.039",
"appVersionName": null,
"edited": false
}
],
"timestamp": "2023-06-15T07:32:55.505979576+03:00"
}
Example for a specific review
curl --location 'https://public-api.rustore.ru/public/v1/application/ru.voonsh.push/comment?id=1981699775' \
--header 'Content-Type: application/json' \
--header 'Public-Token: eyJlbmMiOiJBMjU2R0NNIiwiYWxnIjoiUlNBLU9BRVAtMjU2In0.h635qF_TZc43287jXQVImu_-o4eVFQwrQYe2WnjbywC_KUC4oX6W3ssyPWzlAugd2RELbVCTk1wiDdKwPIbkOJC_HdF0yAmnPg0PRxwyfCHblRuccuuEg_l6sKY1Fqrh6kH3D5N2i_HnDei-hTusAvHR333ZstAK73dc-4Ecn24jb1XyBsdg0_KddKaRpEjTMSudIV6rdpBNMlQRUyQufrP2RMXK5Kc_0gY0iA-tazQoOJmK4xstHmuFbSBx3J6oN5QIlYonx0LZ6ABf2fD0O1E7LFsVUMd2bOdLYg5id5bTRXKd238iB5snmPhGJJN3d6v8xdoV5TdOMGPvjO0A5A.-mSbEMAvEglyEOJu.eKxraHkohwEcn3cG4glUBnwypjnapol4WnwhQGyKe-TDq9TGNj9CO4hnXGh4UPSRI55w73pJwSCuDe7LfsQ8zqBVjirT_HXypowHsWBwvBG-6rwSRvhZsad2YY8wHTZeXOddVynWnESoKAnXIdImafEbIWN1Hik.VJ-b1KxDxMrgJTz_Vuul2Q'
Response example
{
"code": "OK",
"message": null,
"body": [
{
"packageName": "ru.voonsh.push",
"appId": 227169215,
"commentId": 1981699775,
"userName": "Grigory",
"appRating": 5,
"commentStatus": "PUBLISHED",
"commentDate": "2023-04-27 18:54:18.018",
"commentText": "Nice app!
"likeCounter": 1,
"dislikeCounter": 0,
"updatedAt": "2023-04-27 18:55:30.030",
"appVersionName": "1.3",
"edited": false
}
],
"timestamp": "2023-06-15T07:13:16.309841987+03:00"
}