Skip to main content
GET
/
v1
/
projects
/
{projectId}
/
session-history
/
{sessionId}
Get session detail
curl --request GET \
  --url https://api.pathors.com/v1/projects/{projectId}/session-history/{sessionId} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "sessionId": "<string>",
    "projectId": "<string>",
    "startTime": "2023-11-07T05:31:56Z",
    "endTime": "2023-11-07T05:31:56Z",
    "provider": "<string>",
    "marked": true,
    "commentCount": 123,
    "messageCount": 123,
    "evaluation": null,
    "events": [
      {
        "type": "<string>",
        "timestamp": "2023-11-07T05:31:56Z",
        "data": {}
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Developer key created from the dashboard (Settings → Developer Keys)

Path Parameters

projectId
string
required

The ID of your project

sessionId
string
required

The session ID

Response

OK

data
object
required