GET
/
api
/
status
/
v1
/
{id}
/
incidents
GetIncidents
curl --request GET \
  --url https://developer.synq.io/api/status/v1/{id}/incidents \
  --header 'Authorization: Bearer <token>'
{
  "id": {
    "airflowDag": {
      "integrationId": "<string>",
      "dagId": "<string>"
    }
  },
  "entityOpenIncidents": [
    {
      "id": "<string>",
      "url": "<string>",
      "name": "<string>",
      "createdBy": "<string>",
      "createdAt": "1s",
      "updatedBy": "<string>",
      "updatedAt": "1s",
      "isResolved": true
    }
  ],
  "upstreamOpenIncidents": [
    {
      "id": "<string>",
      "url": "<string>",
      "name": "<string>",
      "createdBy": "<string>",
      "createdAt": "1s",
      "updatedBy": "<string>",
      "updatedAt": "1s",
      "isResolved": true
    }
  ]
}

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 incidents for.

Query Parameters

fetchUpstreamIncidents
boolean

Retrieve incidents of upstream entities.

Response

200
application/json

Success

GetIncidentsResponse is the response message for the GetEntity method.