Skip to main content
PUT
/
api
/
user
/
chat-availability
Update chat availability status
curl --request PUT \
  --url https://your-instance.example.com/api/user/chat-availability \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "isAvailable": true
}
'
{}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
isAvailable
boolean
required

Response

Chat availability updated

Generic response envelope. Endpoint-specific fields are intentionally open.