Skip to main content
POST
/
inbox
/
reviews
/
{id}
/
reply
Reply to a review
curl --request POST \
  --url https://api.social-api.ai/v1/inbox/reviews/{id}/reply \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "account_id": "<string>",
  "text": "<string>"
}
'
{
  "reply_id": "r_abc123",
  "success": true
}

Authorizations

Authorization
string
header
required

Prefix your API key with "Bearer ". Example: Authorization: Bearer sapi_key_...

Path Parameters

id
string
required

Review ID

Body

application/json

Reply content

account_id
string
text
string

Response

Reply posted with reply_id

reply_id
string
Example:

"r_abc123"

success
boolean
Example:

true