V2 Navigation

List navigation folders (v2)

get

Returns the workspace navigation tree as folders with embedded resources. Folders are sorted by order so agents can plan moves without a second lookup.

Responses
chevron-right
200

Navigation folders retrieved successfully

application/json
idstring · uuidOptional
orderinteger · int32Optional
namestringOptional
get
/api/v2/navigation/folders

Create navigation folder (v2)

post

Creates a navigation folder for organizing resources inside the workspace. additionalProperties can store client metadata without changing routing behavior.

Body
namestringOptional
orderinteger · int32Optional
Responses
chevron-right
200

Navigation folder created successfully

application/json
folderIdstring · uuidOptional
namestringOptional
post
/api/v2/navigation/folders

Delete navigation folder (v2)

delete

Deletes one navigation folder. Move any resources you still need before calling this endpoint because the folder itself is removed.

Path parameters
folderIdstring · uuidRequired
Responses
chevron-right
200

Navigation folder deleted successfully

application/json
folderIdstring · uuidOptional
namestringOptional
delete
/api/v2/navigation/folders/{folderId}

Patch navigation folder (v2)

patch

Updates one navigation folder. Use this to rename the folder, adjust its display order, or replace additionalProperties.

Path parameters
folderIdstring · uuidRequired
Body
namestringOptional
orderinteger · int32Optional
Responses
chevron-right
200

Navigation folder updated successfully

application/json
folderIdstring · uuidOptional
namestringOptional
patch
/api/v2/navigation/folders/{folderId}

Move navigation resource (v2)

post

Moves one resource into a navigation folder. resourceType disambiguates what is being moved, and targetFolderId identifies the destination folder.

Body
resourceIdstring · uuidOptional
resourceTypestring · enumOptionalPossible values:
targetFolderIdstring · uuidOptional
Responses
chevron-right
200

Resource moved successfully

application/json
resourceIdstring · uuidOptional
resourceTypestring · enumOptionalPossible values:
targetFolderIdstring · uuidOptional
post
/api/v2/navigation/resources:move

Last updated