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

Get Api Keys

get Api Keys.

These endpoints turn the module on or off for your project. This method returns the api keys available in your project. POST /apikeys

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.getApiKeys({
  environment: 'TEST',
});
using Norbix.Sdk;
using Norbix.Sdk.Types.Api;

using var client = new NorbixClient();

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

norbix = NorbixApi()

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

In the dashboard

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

API reference

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

Last updated