Brand2Social API Documentation

Comprehensive guide to Brand2Social API endpoints

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

FieldTypeRequiredDescription
Authorizationstring (header)YesBearer token for authentication (requires ORG_ADMIN permission)
brand_idint64YesID of the brand
connected_profile_idint64YesID of the connected Google My Business profile (from social-connect)
review_idstringYesID of the review (from fetch-all-review)
messagestringYesThe 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": ""
}