Skip to main content
POST
/
api
/
svc
/
v1
/
dependency-tree
Resolve Dependency Tree
curl --request POST \
  --url https://{controlPlaneURL}/api/svc/v1/dependency-tree \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "manifests": [
    {}
  ]
}
'
{
  "data": [
    {
      "resourceType": "<string>",
      "resourceName": "<string>",
      "dependencies": [
        "<string>"
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Body

application/json
manifests
object[]
required

Array of manifests of the resources to be resolved for the dependency tree

Response

200 - application/json

The dependency tree has been successfully resolved.

data
Resource · object[]
required

List of resources with their dependencies