curl --request PATCH \
--url https://api.open.cx/chat/sessions/{session_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"status": "open",
"generate_summary_and_sentiment_on_resolve": true,
"reflect_status_change_for_integration": true
}'
This response has no body data.
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Was this page helpful?
curl --request PATCH \
--url https://api.open.cx/chat/sessions/{session_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"status": "open",
"generate_summary_and_sentiment_on_resolve": true,
"reflect_status_change_for_integration": true
}'
This response has no body data.