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.

The response is of type object.