curl --request GET \
--url https://api.example.com/orgs/{org_id}/nodes/{node_id}{
"id": "<string>",
"title": "<string>",
"description": "<string>",
"org_id": "<string>",
"public_id": "<string>",
"created_by": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"created_by_email": "<string>",
"tags": {},
"directories": [
"<string>"
],
"num_parents": 123,
"num_children": 123,
"num_descendants": 0,
"num_ancestors": 0
}Get a node by ID.
curl --request GET \
--url https://api.example.com/orgs/{org_id}/nodes/{node_id}{
"id": "<string>",
"title": "<string>",
"description": "<string>",
"org_id": "<string>",
"public_id": "<string>",
"created_by": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"created_by_email": "<string>",
"tags": {},
"directories": [
"<string>"
],
"num_parents": 123,
"num_children": 123,
"num_descendants": 0,
"num_ancestors": 0
}Successful Response
Response model for node data.
Node ID
Node title
Node description
Organization ID
Public identifier
Creator user ID
Creation timestamp
Creator email address
Node tags
Directory paths
How many parents contain this node
How many children this node contains
Total nodes reachable by walking down the tree
Total nodes reachable by walking up the tree