Skip to main content
GET
/
v1
/
scheduledMetricCalculations
/
{scheduledMetricCalculation}
/
metricCalculations
List MetricCalculation
curl --request GET \
  --url https://metrics.eu.confidence.dev/v1/scheduledMetricCalculations/{scheduledMetricCalculation}/metricCalculations \
  --header 'Authorization: Bearer <token>'
{
  "metricCalculations": [
    {
      "metricCalculationSpec": {},
      "startTime": {},
      "scheduleIteration": {},
      "times": {},
      "createTime": {},
      "updateTime": {},
      "creator": "<string>",
      "updater": "<string>",
      "name": "<string>",
      "endTime": {},
      "exposureEndTime": {},
      "state": {},
      "metricResults": {},
      "schedule": "<string>",
      "sqlJob": "<string>",
      "supersededBy": "<string>",
      "sql": "<string>",
      "superseeds": "<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

scheduledMetricCalculation
string
required

Query Parameters

pageSize
object

The maximum number of metric calculations to fetch.

pageToken
string

Token used for pagination.

filter
string

Filtering for metric calculations, follows the lucene query string format for example 'name: "scheduledMetricCalculations/abc/metricCalculations/123"', see MetricCalculation type for available fields.

Response

200 - application/json

OK

metricCalculations
object[]
required

List of matching metric calculations.

nextPageToken
string

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