curl --request GET \
--url https://api.example.com/orgs/all/nodes{
"nodes": [
{
"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
}
],
"total": 123,
"limit": 123,
"offset": 123
}List nodes across all organizations the user is a member of.
This endpoint is used by the frontend to show a unified view of all nodes the user has access to across their organization memberships.
curl --request GET \
--url https://api.example.com/orgs/all/nodes{
"nodes": [
{
"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
}
],
"total": 123,
"limit": 123,
"offset": 123
}