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

Delete File Api

Delete File Api.

These endpoints turn the module on or off for your project. This method removes the file api. This action cannot be undone.

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

using var client = new NorbixClient();

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

norbix = NorbixApi()

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

In the dashboard

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

API reference

Full request and response for this endpoint: Delete File Api.

Last updated