Reply to Review
Reply to a particular review.
HTTP Request​
POST https://dev.calry.app/api/v2/vrs/reviews
Headers​
Header | Value |
---|---|
Authorization | Bearer YOUR_ACCESS_TOKEN |
workspaceId | YOUR_WORKSPACE_ID |
integrationAccountId | YOUR_INTEGRATION_ACCOUNT_ID |
Request Body​
The request body should be a JSON object containing the following fields:
Field | Type | Description |
---|---|---|
reviewId | string | Required. Unique identifier used to identify the review. |
body | string | Required. Reply to the review. |
Example Request​
curl --location 'https://dev.calry.app/api/v2/vrs/reviews' \
--header 'Authorization: Bearer eyJraWQiOiJzLWMwMzE2MzExLTg3NDktNGNhMC05NDg0LTBlNWM1ZDVlMDExOSIsInR5cCI6IkpXVCIsImFsZyI6IlJTMjU2In0.eyJpc3MiOiJodHRwOi8vbG9jYWxob3N0OjMwMDAvYXV0aCIsInVzZXJJZCI6ImM2OGY4MTkzLWU2MTAtNDY2Mi05NzU4LWQ2ZjEyYWE4MDA4NiIsIndvcmtzcGFjZUlkIjoiMTQ4Nzc5NmQtM2ZjZC00YTYyLTg4NGEtM2FhYmE1MDdlNzMyIiwibmFtZSI6InNhZnNhZCIsInNvdXJjZSI6Im1pY3Jvc2VydmljZSIsImlhdCI6MTcxNTY5NTE0NiwiZXhwIjoxNzE1ODE2MzU4fQ.G5ivhtRB12zvjyrO5OXe5kF0sassWFPW802UtkxJy2DwWQKeweajZjRxMoWEpSri2cczN1fxeTAM5mnHGzjkFgdxgmHfqjua3CY2DMHs7Yzc1nFGguCZ0mS4wY5TYFpqlIeld13994vAXlM6Swn2Va7xdrq8yMrduMy3iGG2zpMB7Uw5diZzSGoUbKO7dq7Yxsqt1T8xAQ8UCdsSZbe6iUqfFddNvuQZ6G5nuiAZqKQDDy9EEsqGOYRABO_7P5bm6ZHyiLPJvOnTOLoro3NaR4kqm8lCGHQp8AK9gE22NUalxUyKSraRN6HAC3slkuW8D5gCZJGi7lqaOru4zzddycszWEvPqRg' \
--header 'workspaceId: 1487796d-3fcd-4a62-884a-3aaba507e732' \
--header 'integrationAccountId: 2462d083-7951-4b67-96c9-a83384d59af3' \
--header 'Content-Type: application/json' \
--data '{
"reviewId" : 59970,
"body": "Thanks for the review! We are glad you enjoyed your stay."
}'
Example Response​
{
"success": true,
"data": {
"id": 59970,
"title": "",
"description": "Stayed here because State Opera is in 100 meters (that we were visited) as well as other main Sofia's tourists attractions. Studio is big and very well equipped, management company do its job very good, communication is quick and helpful. Very nice experience.",
"feedback": "Everything is perfect, just handle on the wc door need a quick repair and it would be great to have plunger in wc. not a big deal though",
"response": "Thanks for the review! We are glad you enjoyed your stay.",
"rating": 5,
"createdAt": "2019-02-26T11:13:02.000Z",
"guestId": 1352915,
"propertyId": 13825,
"reservationId": 495233,
"source": "UNKNOWN",
"categoryRatings": [
{
"category": "CLEANLINESS",
"rating": 5,
"comment": ""
},
{
"category": "ACCURACY",
"rating": 5,
"comment": ""
},
{
"category": "COMMUNICATION",
"rating": 5,
"comment": ""
},
{
"category": "CHECKIN",
"rating": 5,
"comment": ""
},
{
"category": "LOCATION",
"rating": 5,
"comment": ""
},
{
"category": "VALUE",
"rating": 5,
"comment": ""
}
],
"replies": []
}
}