Get clusters list with history

Returns list of clusters, each with summary for each framework along with history of previous scans over time per framwork.
This is a combination of /posture/frameworks along with /api/v1/posture/overtime.

Request object examples

Get the result for all clusters of scans between 2020-11-24 09:37:45 AM and 2020-11-28 05:37:45 AM.

{
"since": "2020-11-24T09:37:45.633230367-05:00", // optional
"until": "2020-11-28T05:37:45.633230937-05:00"  // optional
}

Get the result of the runs for clusters contains 'cluster-001' in the cluster name

{
"innerFilters": [
{
"clusterName": "cluster 001|like"
}
]
}

Get the result of the runs for clusters contains 'cluster-test-1' in the cluster name

{
"innerFilters": [
{
"clusterName": "cluster-test-1"
}
]
}
Language
Credentials
URL
Click Try It! to start a request and see the response here!