Nurama Developers

list_folder_assets

List the assets directly inside a folder.

Read-only tool.

List the assets directly inside a folder. Does not recurse into sub-folders — for hierarchy walks, use list_items_at_path.

Input

PropertyTypeRequiredDescription
folderIdstringyesUUID of the folder.
limitnumbernoPage size (1-50, default 20). min 1. max 50

JSON Schema

{
  "type": "object",
  "properties": {
    "folderId": {
      "type": "string",
      "description": "UUID of the folder."
    },
    "limit": {
      "type": "number",
      "minimum": 1,
      "maximum": 50,
      "description": "Page size (1-50, default 20)."
    }
  },
  "required": [
    "folderId"
  ],
  "additionalProperties": false
}

On this page