curl --request POST \
--url https://developer.synq.io/api/status/v1/issues/by-id \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"requests": [
{
"id": {
"airflowDag": {
"integrationId": "<string>",
"dagId": "<string>"
}
},
"fetchUpstreamStatus": true
}
]
}'
{
"responses": [
{
"id": {
"airflowDag": {
"integrationId": "<string>",
"dagId": "<string>"
}
},
"entityIssuesStatus": "ISSUE_STATUS_UNSPECIFIED",
"entityIssuesSummary": {
"totalCount": 123,
"warnCount": 123,
"errorCount": 123,
"criticalCount": 123
},
"upstreamIssuesStatus": "ISSUE_STATUS_UNSPECIFIED",
"upstreamIssuesSummary": {
"totalCount": 123,
"warnCount": 123,
"errorCount": 123,
"criticalCount": 123
}
}
]
}
Get multiple entity statuses by their identifiers.
curl --request POST \
--url https://developer.synq.io/api/status/v1/issues/by-id \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"requests": [
{
"id": {
"airflowDag": {
"integrationId": "<string>",
"dagId": "<string>"
}
},
"fetchUpstreamStatus": true
}
]
}'
{
"responses": [
{
"id": {
"airflowDag": {
"integrationId": "<string>",
"dagId": "<string>"
}
},
"entityIssuesStatus": "ISSUE_STATUS_UNSPECIFIED",
"entityIssuesSummary": {
"totalCount": 123,
"warnCount": 123,
"errorCount": 123,
"criticalCount": 123
},
"upstreamIssuesStatus": "ISSUE_STATUS_UNSPECIFIED",
"upstreamIssuesSummary": {
"totalCount": 123,
"warnCount": 123,
"errorCount": 123,
"criticalCount": 123
}
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
BatchGetIssuesStatusRequest is the request message for the BatchGetIssues method.
Success
BatchGetIssuesStatusResponse is the response message for the BatchGetIssues method.