latestOpenAPI 3.0.32026-08-12367267.0 KB
cda4b2b11372
List of session activities
This endpoint retrieves a list of activities related to a specific session.
Parameters:
- companyKey (string, required) - The company's secret key.
- sessionId (string, required) - The unique identifier of the session.
post/list-session-activities
Request body
Example request
{
"companyKey": "your-company-secret-key",
"sessionId": "example-session-id-12345"
}Response
Success
Example response
{
"result": [
{
"id": "6162636465666768696a6b6c",
"type": "PAGE_LOADED",
"time": "2021-12-29T11:30:39.086Z",
"data": {}
},
{
"id": "5ff45878f44e95bbf987a801",
"type": "PAGE_LOADED",
"time": "2011-12-29T11:30:39.086Z",
"data": {}
}
]
}