Skip to main content
GET
/
v1
/
exposureTables
List ExposureTable
curl --request GET \
  --url https://metrics.eu.confidence.dev/v1/exposureTables \
  --header 'Authorization: Bearer <token>'
{
  "exposureTables": [
    {
      "sql": "<string>",
      "displayName": "<string>",
      "entity": "<string>",
      "firstExposureTimeColumn": {},
      "entityIdColumn": {},
      "groupNameColumn": {},
      "state": {},
      "schemaValidationJob": "<string>",
      "createTime": {},
      "updateTime": {},
      "creator": "<string>",
      "updater": "<string>",
      "name": "<string>",
      "exposureDataDeliveredUntilTime": {},
      "exposedEntitiesMetric": "<string>",
      "firstExposureTruncation": {},
      "exposureFilterColumn": {},
      "dimensions": [
        {}
      ],
      "error": {},
      "labels": [
        {}
      ],
      "owner": "<string>",
      "scheduledExposureCalculation": "<string>",
      "exposureCalculation": "<string>",
      "deleteTime": {},
      "systemCreated": true
    }
  ],
  "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 exposure tables to fetch.

pageToken
string

Token used for pagination.

filter
string

Filtering for exposure tables, follows the lucene query string format for example 'name: "exposureTables/abc"', see ExposureTable type for available fields.

showDeleted
boolean

If deleted exposure tables should be included.

Response

200 - application/json

OK

exposureTables
object[]

List of matching exposure tables.

nextPageToken
string

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