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>"
]
}
]
}Resolves the dependency tree for the given manifests.
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>"
]
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Array of manifests of the resources to be resolved for the dependency tree
The dependency tree has been successfully resolved.
List of resources with their dependencies
Show child attributes
Was this page helpful?