Skip to main content

Create Review Reply

curl -X POST https://api.kinconecta.com/api/review_replies \
  -H "Content-Type: application/json" \
  -d '{
    "reviewId": 123,
    "guideId": 789,
    "message": "Thank you so much for your kind words! It was a pleasure showing you around."
  }'
Create a new reply from a guide to a tourist’s review.

Request Body

reviewId
integer
required
ID of the review being replied to
guideId
integer
required
ID of the guide posting the reply
message
string
required
Reply message text

Response

replyId
integer
Unique identifier for the reply
reviewId
integer
ID of the review
guideId
integer
ID of the guide
message
string
Reply message text
createdAt
datetime
Timestamp when the reply was created
updatedAt
datetime
Timestamp when the reply was last updated

Get All Review Replies

curl https://api.kinconecta.com/api/review_replies
Retrieve all review replies in the system.

Response

Returns an array of review reply objects.

Get Review Reply by ID

curl https://api.kinconecta.com/api/review_replies/456
Retrieve a specific review reply by its ID.

Path Parameters

id
integer
required
The reply ID

Response

Returns a single review reply object.

Update Review Reply

curl -X PUT https://api.kinconecta.com/api/review_replies/456 \
  -H "Content-Type: application/json" \
  -d '{
    "message": "Updated reply: Thank you! Looking forward to hosting you again soon."
  }'
Update an existing review reply.

Path Parameters

id
integer
required
The reply ID

Request Body

reviewId
integer
Updated review ID (if changing the parent review)
guideId
integer
Updated guide ID
message
string
Updated message text

Response

Returns the updated review reply object.

Delete Review Reply

curl -X DELETE https://api.kinconecta.com/api/review_replies/456
Delete a review reply by its ID.

Path Parameters

id
integer
required
The reply ID

Response

Returns 204 No Content on successful deletion.

Build docs developers (and LLMs) love