GET
/
v1
/
session
curl --request GET \
  --url https://api.agentreach.ai/v1/session \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "agentId": "<string>",
  "completed": true,
  "endUserId": "<string>",
  "channelType": "<string>",
  "channel": {
    "type": "web-ui",
    "slackUserId": "<string>",
    "email": "<string>"
  },
  "createdAt": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

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

Query Parameters

sessionId
string
required

Unique identifier for the session.

Response

200
application/json
Session details retrieved successfully.
id
string
required

Unique identifier for the session.

agentId
string
required

Unique identifier for the agent.

completed
boolean
required

Whether the session is completed.

channelType
string
required

Type of communication channel.

channel
object
required

Channel-specific details.

createdAt
string
required

Timestamp of session creation.

endUserId
string | null

Identifier for the end user.