Brand2Social API Documentation

Comprehensive guide to Brand2Social API endpoints

Delete Reply to Review

Delete an existing reply to a Google My Business review. Specify the brand_id, connected_profile_id (from social-connect), and review_id (from fetch-all-review). The review must have an existing reply (from reply-review). Supported platform: Google My Business only. Response confirms successful reply deletion with no data.

  • Method: POST
  • Endpoint: /api/api-services/v1/brand-service/delete-reply-review
  • Returns: Confirmation of successful review reply deletion

Delete Reply to Review

POST https://app.brand2social.com/api/api-services/v1/brand-service/delete-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 with an existing reply (from fetch-all-review)
    
    
curl --location 'https://app.brand2social.com/api/api-services/v1/brand-service/delete-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"
}'
    
  

Response

{
  "status": "SUCCESS",
  "http_code": 200,
  "message": "Reply to review deleted successfully",
  "data": null
}

Error Response

{
  "status": "FAILURE",
  "http_code": 400,
  "message": "review_id is required",
  "data": ""
}