GET
/
api
/
status
/
v1
/
{id}
/
incidents
curl --request GET \
  --url https://developer.synq.io/api/status/v1/{id}/incidents \
  --header 'Authorization: Bearer <token>'
{
  "id": {
    "dbtCoreNode": {
      "integrationId": "<string>",
      "nodeId": "<string>"
    },
    "dbtCloudNode": {
      "projectId": "<string>",
      "accountId": "<string>",
      "nodeId": "<string>"
    },
    "bigqueryTable": {
      "project": "<string>",
      "dataset": "<string>",
      "table": "<string>"
    },
    "snowflakeTable": {
      "account": "<string>",
      "database": "<string>",
      "schema": "<string>",
      "table": "<string>"
    },
    "redshiftTable": {
      "cluster": "<string>",
      "database": "<string>",
      "schema": "<string>",
      "table": "<string>"
    },
    "postgresTable": {
      "host": "<string>",
      "database": "<string>",
      "schema": "<string>",
      "table": "<string>"
    },
    "mysqlTable": {
      "host": "<string>",
      "schema": "<string>",
      "table": "<string>"
    },
    "clickhouseTable": {
      "host": "<string>",
      "schema": "<string>",
      "table": "<string>"
    },
    "airflowDag": {
      "integrationId": "<string>",
      "dagId": "<string>"
    },
    "airflowTask": {
      "integrationId": "<string>",
      "dagId": "<string>",
      "taskId": "<string>"
    },
    "custom": {
      "id": "<string>"
    },
    "dataproduct": {
      "id": "<string>"
    },
    "synqPath": {
      "path": "<string>"
    },
    "databricksTable": {
      "workspace": "<string>",
      "catalog": "<string>",
      "schema": "<string>",
      "table": "<string>"
    },
    "trinoTable": {
      "host": "<string>",
      "catalog": "<string>",
      "schema": "<string>",
      "table": "<string>"
    },
    "sqlMeshModel": {
      "integrationId": "<string>",
      "fqn": "<string>"
    },
    "sqlMeshAudit": {
      "integrationId": "<string>",
      "fqn": "<string>",
      "auditId": "<string>"
    },
    "monitor": {
      "monitoredId": {},
      "monitorId": "<string>",
      "segment": "<string>",
      "integrationId": "<string>"
    }
  },
  "entityOpenIncidents": [
    {
      "id": "<string>",
      "url": "<string>",
      "name": "<string>",
      "createdBy": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedBy": "<string>",
      "updatedAt": "2023-11-07T05:31:56Z",
      "isResolved": true
    }
  ],
  "upstreamOpenIncidents": [
    {
      "id": "<string>",
      "url": "<string>",
      "name": "<string>",
      "createdBy": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedBy": "<string>",
      "updatedAt": "2023-11-07T05:31:56Z",
      "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

OK

GetIncidentsResponse is the response message for the GetEntity method.