Delete a hierarchy node
/portal/v1/accounts/{accountSlug}/applications/{appSlug}/environments/{envSlug}/nodes/{id}Soft-deletes a hierarchy node and its entire subtree in the current Environment by setting each node's status to deleted (rows are retained rather than hard-deleted), and removes every role assignment anchored at any node in the subtree so hidden branches can't keep granting access. Gated by hierarchy.manage on the node; the root node cannot be deleted (400). Supply an If-Match header with the node's current version for optimistic concurrency — a stale value returns 409. Returns 204 No Content and writes a node.deleted audit row.
Authentication
AuthorizationJWT access token. Never send alongside X-API-Key: a request carrying both is refused.
env_structure.manageDeveloper ConsoleCreate, edit, move, and delete the Environment's hierarchy nodes and edit its levels. Granted through an administrator role in the Admin Workspace; a valid token without it is refused with 403.
Path Parameters
idstring Required Headers
if-matchrequiredIf-MatchOptimistic-lock version of the resource. Send the `version` field returned on read; the server rejects with 409 if the row has changed since.
Responses
Node deleted successfully
application/json
error *ApiErrorBodyDto
application/json
error *ApiErrorBodyDto
application/json
error *ApiErrorBodyDto
application/json
error *ApiErrorBodyDto
Errors
When the request can't be completed, the response body includes a stable error code you can branch on.
account.capability_requiredForbiddenThe signed-in user's administrator roles do not grant the capability this endpoint requires.
Ask an account administrator to grant a role carrying the capability named in the Authentication section, then retry.
curl -X DELETE "https://auth.canopy-io.com/portal/v1/accounts/{accountSlug}/applications/{appSlug}/environments/{envSlug}/nodes/value" \ -H "if-match: value" \ -H "If-Match: value" \ -H "Authorization: Bearer $CANOPY_TOKEN"
HTTP/1.1 204 Node deleted successfully (empty body)
Tell us how we can improve this guide.