POST
/
reviews
curl \
-H "Authorization: Bearer API_KEY" \
-H 'Content-Type: application/json' \
-d '{"reviewId": "Ut1fWU6XkqkMayHGnJZ", "platform": "gmb", "reply": "An amazing review!"}' \
-X POST https://api.ayrshare.com/api/reviews
{
   "gmb": {
       "action": "reply",
       "status": "success",
       "id": "AbFvOqmQJ4xMTl2mjZl0h83TcOj",
       "reply": "This one is great",
       "platform": "gmb",
   }
},
{
   "facebook": {
       "status": "success",
       "platform": "facebook",
       "id": "376602035206384_737529881909727",
       "reply": "This one is great too",
       "action": "reply"
   }
}
Available on Premium, Business, Enterprise plans.

Add a reply to a review. Currently only Facebook and Google Business Profile reviews are supported.

Header Parameters

Authorization
string
required
API Key of the Primary Profile.

Format: Authorization: Bearer API_KEY
Profile-Key
string
Profile Key of a User Profile.

Format: Profile-Key: PROFILE_KEY

Body Parameters

platform
string
required

Values: gmb or facebook

reviewId
string
required

The review ID.

reply
string
required

The String text for the review reply.

curl \
-H "Authorization: Bearer API_KEY" \
-H 'Content-Type: application/json' \
-d '{"reviewId": "Ut1fWU6XkqkMayHGnJZ", "platform": "gmb", "reply": "An amazing review!"}' \
-X POST https://api.ayrshare.com/api/reviews
{
   "gmb": {
       "action": "reply",
       "status": "success",
       "id": "AbFvOqmQJ4xMTl2mjZl0h83TcOj",
       "reply": "This one is great",
       "platform": "gmb",
   }
},
{
   "facebook": {
       "status": "success",
       "platform": "facebook",
       "id": "376602035206384_737529881909727",
       "reply": "This one is great too",
       "action": "reply"
   }
}