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