ACME API Documentation logo

Reply to a Review

Add a reply to a review

POSThttps://api.acme.com/api/reviews
Available on Premium, Business, Enterprise plans.

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

Header Parameters

Authorizationstringrequired
API Key of the Primary Profile.

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

Format: Profile-Key: PROFILE_KEY

Body Parameters

platformstringrequired

Values: gmb or facebook

reviewIdstringrequired

The review ID.

replystringrequired

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