Skip to main content
POST
/
api
/
impact
/
v1
GetImpact
curl --request POST \
  --url https://developer.synq.io/api/impact/v1 \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "ids": [
    {
      "airflowDag": {
        "integrationId": "<string>",
        "dagId": "<string>"
      }
    }
  ]
}
'
{
  "entities": [
    {
      "name": "<string>",
      "ids": [
        {
          "airflowDag": {
            "integrationId": "<string>",
            "dagId": "<string>"
          }
        }
      ],
      "synqPaths": [
        "<string>"
      ]
    }
  ],
  "downstreamEntities": [
    {
      "name": "<string>",
      "ids": [
        {
          "airflowDag": {
            "integrationId": "<string>",
            "dagId": "<string>"
          }
        }
      ],
      "synqPaths": [
        "<string>"
      ]
    }
  ],
  "dataproducts": [
    {
      "id": {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
      },
      "title": "<string>",
      "description": "<string>",
      "folder": "<string>",
      "priority": "PRIORITY_UNSPECIFIED",
      "impactedEntities": [
        {
          "name": "<string>",
          "ids": [
            {
              "airflowDag": {
                "integrationId": "<string>",
                "dagId": "<string>"
              }
            }
          ],
          "synqPaths": [
            "<string>"
          ]
        }
      ]
    }
  ],
  "downstreamDataproducts": [
    {
      "id": {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
      },
      "title": "<string>",
      "description": "<string>",
      "folder": "<string>",
      "priority": "PRIORITY_UNSPECIFIED",
      "impactedEntities": [
        {
          "name": "<string>",
          "ids": [
            {
              "airflowDag": {
                "integrationId": "<string>",
                "dagId": "<string>"
              }
            }
          ],
          "synqPaths": [
            "<string>"
          ]
        }
      ]
    }
  ],
  "owners": [
    {
      "id": {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
      },
      "title": "<string>",
      "impactedEntities": [
        {
          "name": "<string>",
          "ids": [
            {
              "airflowDag": {
                "integrationId": "<string>",
                "dagId": "<string>"
              }
            }
          ],
          "synqPaths": [
            "<string>"
          ]
        }
      ]
    }
  ],
  "downstreamOwners": [
    {
      "id": {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
      },
      "title": "<string>",
      "impactedEntities": [
        {
          "name": "<string>",
          "ids": [
            {
              "airflowDag": {
                "integrationId": "<string>",
                "dagId": "<string>"
              }
            }
          ],
          "synqPaths": [
            "<string>"
          ]
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
ids
(airflow_dag · object | airflow_task · object | bigquery_table · object | clickhouse_table · object | custom · object | databricks_table · object | dataproduct · object | dbt_cloud_node · object | dbt_core_node · object | monitor · object | mysql_table · object | postgres_table · object | redshift_table · object | snowflake_table · object | sql_mesh_audit · object | sql_mesh_model · object | synq_path · object | trino_table · object)[]

Identifier is a unique reference to an entity in SYNQ system. Entity identifiers are designed to closely mimic identifiers used by data platforms and tools. To construct an identifier, you need to know the kind of the entity and the ids that you would normally use to identify it in the data platform or tool. For example, to identify a table in BigQuery, you would need to know the project, dataset, and table names.

Response

200 - application/json

Success

entities
ImpactedEntityGroup · object[]
downstreamEntities
ImpactedEntityGroup · object[]
dataproducts
ImpactedDataproduct · object[]
downstreamDataproducts
ImpactedDataproduct · object[]
owners
ImpactedOwner · object[]
downstreamOwners
ImpactedOwner · object[]