Skip to main content
GET
/
v1
/
scheduledExposureCalculations
/
{scheduledExposureCalculation}
/
exposureCalculations
List ExposureCalculation
curl --request GET \
  --url https://metrics.eu.confidence.dev/v1/scheduledExposureCalculations/{scheduledExposureCalculation}/exposureCalculations \
  --header 'Authorization: Bearer <token>'
{
  "exposureCalculations": [
    {
      "exposureCalculationSpec": {},
      "startTime": {},
      "endTime": {},
      "entity": "<string>",
      "state": {},
      "sqlJob": "<string>",
      "scheduleIteration": {},
      "sql": "<string>",
      "exposureTable": "<string>",
      "createTime": {},
      "updateTime": {},
      "creator": "<string>",
      "updater": "<string>",
      "name": "<string>",
      "schedule": "<string>",
      "retriggered": true,
      "outdatedSourceDataInfo": {},
      "error": "<string>",
      "labels": [
        {}
      ],
      "owner": "<string>"
    }
  ],
  "nextPageToken": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

scheduledExposureCalculation
string
required

Query Parameters

pageSize
object

The maximum number of exposure calculations to fetch.

pageToken
string

Token used for pagination.

filter
string

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

Response

200 - application/json

OK

exposureCalculations
object[]
required

List of matching exposure calculations.

nextPageToken
string

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