Skip to main content

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}

AttributeTypeRequiredLocationDescriptionExample
Public-TokenstringYesheaderAccess token to API RuStore.N/A
packageNamestringYespathApp package name Maximum length: 50 characterscom.myapp.example
commentIdnumberYesqueryUser reviewid748223
messagestringYesbodyText of response to reviewThanks for your feedback. It means a lot to us.

Response example

AttributeTypeRequiredDescriptionExample
codestringYesResponse codeerror/OK
messagestringNoDecoded response codeN/A
timestamptimestamptzYesResponse time2022-07-08T13:24:41.8328711+03:00
body{}objectYesN/AN/A

body

AttributeTypeRequiredDescriptionExample
idnumberYesResponse review id748479

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"
}