Skip to main content
DELETE
/
api
/
entities
/
custom
/
v1
/
relationships
DeleteRelationships
curl --request DELETE \
  --url https://developer.synq.io/api/entities/custom/v1/relationships \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "relationships": [
    {
      "upstream": {
        "airflowDag": {
          "integrationId": "<string>",
          "dagId": "<string>"
        }
      },
      "downstream": {
        "airflowDag": {
          "integrationId": "<string>",
          "dagId": "<string>"
        }
      }
    }
  ]
}
'
{}

Authorizations

Authorization
string
header
required

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

Body

application/json
relationships
Relationship · object[]
required

Response

200 - application/json

Success

The response is of type DeleteRelationshipsResponse · object.