curl --request GET \
--url https://developer.synq.io/api/monitors/automated/v1/deployment-rules \
--header 'Authorization: Bearer <token>'
{
"deploymentRules": [
{
"exclusiveQueryConfig": {
"query": {
"parts": [
{
"identifierList": {
"identifiers": [
{
"airflowDag": {
"integrationId": "<string>",
"dagId": "<string>"
}
}
]
}
}
],
"operand": "QUERY_OPERAND_UNSPECIFIED"
}
},
"id": "<string>",
"title": "<string>",
"monitorCount": 123
}
]
}
curl --request GET \
--url https://developer.synq.io/api/monitors/automated/v1/deployment-rules \
--header 'Authorization: Bearer <token>'
{
"deploymentRules": [
{
"exclusiveQueryConfig": {
"query": {
"parts": [
{
"identifierList": {
"identifiers": [
{
"airflowDag": {
"integrationId": "<string>",
"dagId": "<string>"
}
}
]
}
}
],
"operand": "QUERY_OPERAND_UNSPECIFIED"
}
},
"id": "<string>",
"title": "<string>",
"monitorCount": 123
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Success
The response is of type object
.