PATCH
/
chat
/
sessions
/
{session_id}
curl --request PATCH \
  --url http://localhost:8080/chat/sessions/{session_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "status": "open"
}'
This response has no body data.

Authorizations

Authorization
string
header
required

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

Path Parameters

session_id
string
required

Body

application/json
status
enum<string>
Available options:
open,
closed_resolved,
closed_unresolved