GetSessionLogsRequest¶
| Field | Type | Description |
|---|---|---|
| log_type | The type of logs to query. If not specified, all normal logs will be returned. | |
| start_time | google.protobuf.Timestamp | The start time of the query. |
| end_time | google.protobuf.Timestamp | The end time of the query. |
| page | optional uint64 | The page number and the number of items per page. The server will use this to paginate the results. |
| per_page | optional uint64 | |
| session_id | string | Session ID to query for. |
Example¶
JSON
{
"end_time": "2024-01-15T09:30:00Z",
"log_type": {
"screen_capture": {}
},
"page": 1,
"per_page": 25,
"session_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"start_time": "2024-01-15T09:30:00Z"
}