Skip to main content
GET
/
api
/
v1
/
conversations
/
{conversation_id}
/
active-session
Get Active Session
curl --request GET \
  --url https://api.example.com/api/v1/conversations/{conversation_id}/active-session \
  --header 'Authorization: Bearer <token>'
{
  "sessionId": "<string>",
  "status": "<string>",
  "cursor": "<string>",
  "conversationId": "<string>",
  "startedAt": 123,
  "lastActivity": 123
}

Authorizations

Authorization
string
header
required

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

Path Parameters

conversation_id
string
required

Response

Successful Response

sessionId
string
required
status
string
required
cursor
string
required
conversationId
string
required
startedAt
integer
required
lastActivity
integer
required