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
}
}
Get specific entity status by its identifier.
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
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Identifier of the entity to get status for.
Retrieve status of upstream entities.
Success
GetIssuesStatusResponse is the response message for the GetEntity method.