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
}
]
}
List SqlTests for given annotations.
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
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
String key for the annotation.
1 - 100
Optional list of values that the annotation can carry.
20
Success
The response is of type object
.