Skip to main content
PATCH
/
inbox
/
conversations
/
{id}
Update conversation status
curl --request PATCH \
  --url https://api.social-api.ai/v1/inbox/conversations/{id} \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "status": "archived"
}
'
{
  "ok": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.social-api.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Conversation ID

Body

application/json

Status payload

status
enum<string>

Status must be "active" or "archived".

Available options:
active,
archived
Example:

"archived"

Response

Updated

ok
boolean
Example:

true