FetchCapturedSessionsRequest¶
| Field | Type | Description |
|---|---|---|
| action_id | string | The action id for which insights are requested. If this is empty, this will perform a global query against all captured sessions. |
| time_range | The start time and end time of the captured sessions. | |
| page | optional uint64 | The page number and the number of items per page. The server will use this to paginate the results. Defaults to 1 when not set. |
| per_page | optional uint64 | The number of items to return per page. Defaults to 100 when not set. |
Example¶
JSON
{
"action_id": "actn_ghi789",
"page": 1,
"per_page": 25,
"time_range": {
"relative_time_range": {
"duration": "3600s",
"offset": "3600s"
}
}
}