Skip to main content
GET
/
v1
/
scheduledExposureCalculations
List ScheduledExposureCalculation
curl --request GET \
  --url https://metrics.eu.confidence.dev/v1/scheduledExposureCalculations \
  --header 'Authorization: Bearer <token>'
{
  "scheduledExposureCalculations": [
    {
      "exposureCalculationSpec": {},
      "scheduleStartTime": {},
      "scheduleIntervals": [
        {}
      ],
      "entity": "<string>",
      "nextAssignmentStartTime": {},
      "nextAssignmentEndTime": {},
      "nextScheduledRunTime": {},
      "executedCalculationsCount": {},
      "iteration": {},
      "createTime": {},
      "updateTime": {},
      "status": {},
      "creator": "<string>",
      "updater": "<string>",
      "name": "<string>",
      "scheduleEndTime": {},
      "exposureTable": "<string>",
      "state": {},
      "exposedEntitiesMetric": "<string>",
      "exposedEntitiesMetricSchedule": "<string>",
      "labels": [
        {}
      ],
      "activeRetrigger": "<string>",
      "owner": "<string>"
    }
  ],
  "nextPageToken": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

pageSize
object

The maximum number of scheduled exposure calculations to fetch.

pageToken
string

Token used for pagination.

filter
string

Filtering for scheduled exposure calculations, follows the lucene query string format for example 'name: "scheduledExposureCalculations/abc"', see ScheduledExposureCalculation type for available fields.

Response

200 - application/json

OK

scheduledExposureCalculations
object[]
required

List of matching scheduled exposure calculations.

nextPageToken
string

Token to fetch the next page, empty if no more pages.