GET
/
api
/
datachecks
/
sqltests
/
v1
ListSqlTests
curl --request GET \
  --url https://developer.synq.io/api/datachecks/sqltests/v1 \
  --header 'Authorization: Bearer <token>'
{
  "sqlTests": [
    {
      "platform": {
        "bigquery": {
          "project": "<string>"
        }
      },
      "id": "<string>",
      "name": "<string>",
      "sqlExpression": "<string>",
      "recurrenceRule": "<string>",
      "annotations": [
        {
          "name": "<string>",
          "values": [
            "<string>"
          ]
        }
      ],
      "saveFailures": true
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

annotations.name
string
required

String key for the annotation.

Required string length: 1 - 100
annotations.values
string[]

Optional list of values that the annotation can carry.

Maximum length: 20

Response

200
application/json

Success

The response is of type object.