Leaving a reply to review
This method allows replying to a review.
Interaction parameters
POST
https://public-api.rustore.ru/public/v1/application/{packageName}/feedback?commentId={commentId}
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 |
commentId | number | Yes | query | User reviewid | 748223 |
message | string | Yes | body | Text of response to review | Thanks for your feedback. It means a lot to us. |
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 |
---|---|---|---|---|
id | number | Yes | Response review id | 748479 |
Example
curl --location 'https://public-api.rustore.ru/public/v1/application/ru.voonsh.push/feedback?commentId=2142370751' \
--header 'Content-Type: application/json' \
--header 'Public-Token: eyJlbmMiOiJBMjU2R0NNIiwiYWxnIjoiUlNBLU9BRVAtMjU2In0.ziOR4J-_3A36M55IMdJqxck4Lktk9GFe6vvdRFBkIICA6z4WLLUxdEyHNdMWYomBs9MkJecCaCStOQ5YtmHvFIRK8aoj4c386WwUBXmTDXN_BJg2puwuLivMJWuAhgveZpC7afZCwM6m5RgLi538BAjFV_gE8XvbSUKlhWhkEvIzgrK2zk211SRUVXaAdrWEz5NNSSrQhyEv1fiMgQNmV9Sehp8fxP7G_9HkAWVtfNvgEiTbFHMTO-qpWtdh5Ts440Du9MC7PL59IUmXts1Khx6xbuUWLQe3WHPQCBmKezpxtI-l9Ms4F-iopZy-bXzUaUMFsaQu8Jh4kFvztFenYg.UPvgd5jKQcFO-MRE.zHHu-P5GSwUTvEMae-bu337jxpq25TbftTC7oF8r0APCfUqdx55CbO-PuIeGdjN08K4IC8GsWhLmKr9mqEeV9L-Dh5QSqA6M7GsLH8LAqrR1UX0Z849pyhrOt_Pz4SJ3YeHdu-ITfTL5Ysr0kECMXWIMcE24X8U.zHXeYuxDJf-Wtl9Vn0betw' \
--data '{
"message": "Thank you"
}'
Response example
{
"code": "OK",
"message": null,
"body": {
"id": 2149775551
},
"timestamp": "2023-06-02T16:36:57.847391009+03:00"
}