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

Get Signed Url

Get Signed Url.

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 a single signed url by id.

This method is on the runtime API surface (norbix.api.files) β€” call it from your app.

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.api.files.getSignedUrl({
  filesIntegrationId: 'filesintegration_4kX9mQvR2tYw7ZbC1dFgHj',
  path: 'invoices/2026/invoice.pdf',
  expirationSeconds: 10,
});
using Norbix.Sdk;
using Norbix.Sdk.Types.Api;

using var client = new NorbixClient();

var result = await client.Files.GetSignedUrlAsync(new GetSignedUrlRequest
{
    FilesIntegrationId = "filesintegration_4kX9mQvR2tYw7ZbC1dFgHj",
    Path = "invoices/2026/invoice.pdf",
    ExpirationSeconds = 10,
});
from norbix_python import NorbixApi

norbix = NorbixApi()

result = norbix.files.get_signed_url(
    filesIntegrationId="filesintegration_4kX9mQvR2tYw7ZbC1dFgHj",
    path="invoices/2026/invoice.pdf",
    expirationSeconds=10,
)

In the dashboard

Manage this visually in Norbix Cloud β€” see Files β†’ Sign.

API reference

Full request and response for this endpoint: Get Signed Url.

Last updated