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

Regenerate Api Keys

regenerate Api Keys.

The Account & Projects area manages your Norbix account and its projects β€” projects and environments, team members and their roles, billing and usage, and account-level settings. Regenerates the api keys. POST /apikeys/regenerate

Full request/response reference will appear here once this method is added to the API spec.

This method is on the runtime API surface (norbix.api.apikeys) β€” 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.apikeys.regenerateApiKeys({
  environment: 'TEST',
});
using Norbix.Sdk;
using Norbix.Sdk.Types.Api;

using var client = new NorbixClient();

var result = await client.Apikeys.RegenerateApiKeysAsync(new RegenerateApiKeys
{
    Environment = "TEST",
});
from norbix_python import NorbixApi

norbix = NorbixApi()

result = norbix.apikeys.regenerate_api_keys(
    environment="TEST",
)

In the dashboard

Manage this visually in Norbix Cloud β€” see Account & Projects β†’ Regenerate.

API reference

Full request and response for this endpoint: Regenerate Api Keys.

Last updated