GET
/
chat
/
sessions
/
{session_id}
curl --request GET \
  --url http://localhost:8080/chat/sessions/{session_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "status": "open",
  "channel": {
    "type": "web"
  },
  "contact": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "email": "jsmith@example.com",
    "phone_number": "<string>",
    "name": "<string>",
    "custom_data": {}
  },
  "language": "<string>",
  "assignee_id": "<string>",
  "handoff": {
    "sentiment": "angry",
    "summary": "<string>"
  },
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

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

Response

200
application/json
id
string
required
status
enum<string>
required
Available options:
open,
closed_resolved,
closed_unresolved
channel
object
required
created_at
string | null
required

ISO 8601 date-time string

updated_at
string | null
required

ISO 8601 date-time string

contact
object
language
string
assignee_id
string
handoff
object

Present if the conversation was handed off to a human.