Responder a una reseña de Google Business Profile
1curl -X POST https://api.social-api.ai/v1/inbox/reviews/<review-id>/reply \
2 -H "Authorization: Bearer <your-api-key>" \
3 -H "Content-Type: application/json" \
4 -d '{
5 "text": "Thank you for the kind review! We look forward to seeing you again."
6 }' | jq
7
8# Respuesta
9{
10 "id": "<review-id>",
11 "platform": "google",
12 "reply": {
13 "text": "Thank you for the kind review! We look forward to seeing you again.",
14 "created_at": "2026-05-12T16:45:00Z"
15 }
16}
Responde a una reseña con el mismo endpoint unificado que ya usas para todas las demás plataformas.