v1
latestOpenAPI 3.0.02026-08-064311,0881.3 MBscheduledViewManagement
Get a list of scheduled views.
Get a list of all scheduled views in the organization. The response is paginated with a default limit of 100 scheduled views per page.
get/v1/scheduledViews
Query parameters
limitinteger
Limit the number of scheduled views returned in the response. The number of scheduled views returned may be less than the limit.
tokenstring
Continuation token to get the next page of results. A page object with the next continuation token is returned in the response body. Subsequent GET requests should specify the continuation token to get the next page of results. token is set to null when no more pages are left.
Response
A paginated list of scheduled views in the organization.
Example response
{
"data": [
{
"query": "_sourceCategory=*/Apache",
"indexName": "TestScheduledView",
"retentionPeriod": 60,
"parsingMode": "AutoParse",
"timeZone": "America/Los_Angeles",
"newRetentionPeriod": 300,
"indexId": "1",
"createdBy": "0000000006743FE8",
"modifiedBy": "0000000006743FE8"
}
]
}