GET
/
api
/
status
/
v1
/
{id}
/
issues
GetIssuesStatus
curl --request GET \
  --url https://developer.synq.io/api/status/v1/{id}/issues \
  --header 'Authorization: Bearer <token>'
{
  "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.

Path Parameters

id
object
required

Identifier of the entity to get status for.

Query Parameters

fetchUpstreamStatus
boolean

Retrieve status of upstream entities.

Response

200
application/json

Success

GetIssuesStatusResponse is the response message for the GetEntity method.