Reply to Review
Add a reply to a specific Google My Business review. Specify the brand_id
, connected_profile_id
(from social-connect
), review_id
(from fetch-all-review
), and message
. Supported platform: Google My Business only. Response confirms successful reply addition with no data.
- Method: POST
- Endpoint:
/api/api-services/v1/brand-service/reply-review
- Returns: Confirmation of successful review reply addition
Reply to Review
POST https://app.brand2social.com/api/api-services/v1/brand-service/reply-review
Field | Type | Required | Description |
---|---|---|---|
Authorization | string (header) | Yes | Bearer token for authentication (requires ORG_ADMIN permission) |
brand_id | int64 | Yes | ID of the brand |
connected_profile_id | int64 | Yes | ID of the connected Google My Business profile (from social-connect ) |
review_id | string | Yes | ID of the review (from fetch-all-review ) |
message | string | Yes | The reply text for the review |
curl --location 'https://app.brand2social.com/api/api-services/v1/brand-service/reply-review' \
--header 'Authorization: Bearer B2S_dummyToken' \
--header 'Content-Type: application/json' \
--data-raw '{
"brand_id": 123,
"connected_profile_id": 98769,
"review_id": "review_001",
"message": "Thank you for your feedback!"
}'
Response
{
"status": "SUCCESS",
"http_code": 200,
"message": "Reply to review added successfully",
"data": null
}
Error Response
{
"status": "FAILURE",
"http_code": 400,
"message": "review_id is required",
"data": ""
}