Skip to main content
POST
/
inbox
/
comments
/
{postId}
/
{commentId}
/
private-reply
Send a private reply to a commenter
curl --request POST \
  --url https://api.social-api.ai/v1/inbox/comments/{postId}/{commentId}/private-reply \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "account_id": "<string>",
  "text": "<string>"
}
'
{
  "success": true
}

Authorizations

Authorization
string
header
required

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

Path Parameters

postId
string
required

Platform post ID

commentId
string
required

Platform comment ID

Body

application/json

Private reply content

account_id
string
text
string

Response

Private reply sent

success
boolean
Example:

true