POST
/
api
/
status
/
v1
/
issues
/
by-id
BatchGetIssuesStatus
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
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Body

application/json

BatchGetIssuesStatusRequest is the request message for the BatchGetIssues method.

Response

200
application/json

Success

BatchGetIssuesStatusResponse is the response message for the BatchGetIssues method.