Update Project Admin Url
Updates the project's admin-portal URL override.
import { Norbix } from '@norbix.ai/ts';
const norbix = new Norbix();
const result = await norbix.hub.account.updateProjectAdminUrl({
url: 'https://api.example.com/hooks/orders',
});using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;
using var client = new NorbixClient();
var result = await client.Account.UpdateProjectAdminUrlAsync(new UpdateProjectAdminUrl
{
Url = "https://api.example.com/hooks/orders",
});from norbix_python import NorbixHub
norbix = NorbixHub()
result = norbix.account.update_project_admin_url(
url="https://api.example.com/hooks/orders",
)In the dashboard
API reference
Last updated