Create a hierarchy node
/portal/v1/accounts/{accountSlug}/applications/{appSlug}/environments/{envSlug}/nodesCreates a hierarchy node in the active Application's current Environment. Prerequisite: the Environment must have a hierarchy schema — define it first via PATCH /api/v1/hierarchy-schema (or the Console's enable-hierarchy wizard), or this endpoint returns 400 ("Hierarchy schema is not configured"). Authorization is evaluated against hierarchy.manage on the parent node when parent_node_id is supplied, or Application-wide when creating the root. The node type and the parent/child relationship are validated against the schema, only one root node is permitted per Environment (a second returns 409), and the configured max_depth is enforced; a missing slug is derived from the name. Returns 201 with the created node and writes a node.created 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.
Request body
application/json
parent_node_idstring Optional Parent node ID (null for root)
node_typestring Required Node type (org-defined, e.g. 'department', 'team')
namestring Required Display name for the node
descriptionstring Optional Optional free-text description shown under the node name
slugstring Optional URL-friendly slug (auto-generated if omitted)
metadataobject Optional Arbitrary metadata
Responses
application/json
data *NodeResponseDto
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.
Returned object
curl -X POST "https://auth.canopy-io.com/portal/v1/accounts/{accountSlug}/applications/{appSlug}/environments/{envSlug}/nodes" \ -H "Authorization: Bearer $CANOPY_TOKEN" \ -H "Content-Type: application/json" \ -d '{ "parent_node_id": "string", "node_type": "string", "name": "string", "description": "string", "slug": "string", "metadata": {} }'
{ "data": { "id": "string", "application_id": "string", "parent_node_id": "string", "node_type": "string", "name": "string", "description": "string", "slug": "string", "status": "string", "metadata": {}, "created_at": "2026-04-20T12:00:00.000Z", "updated_at": "2026-04-20T12:00:00.000Z", "version": 0 } }
Tell us how we can improve this guide.