For the complete documentation index, see llms.txt. This page is also available as Markdown.

Get Folder Files

get Folder Files.

The Files module provides cloud storage and file management — upload, download, access control, metadata, and CDN-backed delivery. Files can be referenced from Database records and follow the same identity and permission rules as the rest of the project. This method returns the folder files available in your project.

This method is on the Hub surface (norbix.hub.files) — call it from admin tooling or IaC.

These examples assume the SDK is installed and your credentials are set as environment variables — each client reads them automatically, so the constructors below take no arguments. See Install a Norbix SDK.

import { Norbix } from '@norbix.ai/ts';
const norbix = new Norbix();

const result = await norbix.hub.files.getFolderFiles({
  filesIntegrationId: 'filesintegration_4kX9mQvR2tYw7ZbC1dFgHj',
  path: 'invoices/2026/invoice.pdf',
  startingAfter: 'cursor_next',
  endingBefore: 'cursor_prev',
});
using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;

using var client = new NorbixClient();

var result = await client.Files.GetFolderFilesAsync(new GetFolderFiles
{
    FilesIntegrationId = "filesintegration_4kX9mQvR2tYw7ZbC1dFgHj",
    Path = "invoices/2026/invoice.pdf",
    StartingAfter = "cursor_next",
    EndingBefore = "cursor_prev",
});

In the dashboard

Manage this visually in Norbix Cloud — see Files → Folder.

API reference

Full request and response for this endpoint: Get Folder Files.

Last updated