> ## Documentation Index
> Fetch the complete documentation index at: https://docs.megaport.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Configuring Account Settings

> This help topic describes how to configure features for managed accounts, including service approval, pricing visibility, and minimum term renewal settings.

export const Link = ({href, children}) => {
  const errorPrefix = '\x1b[31;1;4mERROR\x1b[0m: Link -';
  if (typeof href !== 'string') {
    href = String(href);
  }
  if (!href || href === 'undefined') {
    console.error(`${errorPrefix} the \`href\` property is required — rendering an empty string instead`);
    return <></>;
  }
  if (href.includes('{') || href.toUpperCase().includes('%7B')) {
    console.error(`${errorPrefix} could not resolve a variable in href "${href}" — rendering an empty string instead`);
    return <></>;
  }
  const isExternal = (/^https?:\/\//).test(href);
  return <a href={href} className="link" target={isExternal ? '_blank' : undefined} rel={isExternal ? 'noreferrer' : undefined}>
      {children ?? href}
      {isExternal && <span className="sr-only"> (opens in a new tab)</span>}
    </a>;
};

export const Image = ({src, alt = '', caption, width, height, shadow}) => {
  const errorPrefix = '\x1b[31;1;4mERROR\x1b[0m: Image -';
  if (typeof src !== 'string') {
    src = String(src);
  }
  if (!src || src === 'undefined') {
    console.error(`${errorPrefix} \`src\` is required — rendering an empty string instead`);
    return <></>;
  }
  const img = <img className={['mega-image-style', shadow ? 'shadow' : ''].join(' ')} src={src} alt={alt} width={width} height={height} style={{
    display: 'block'
  }} />;
  return caption ? <figure>
      {img}
      <figcaption style={{
    textAlign: 'center',
    width
  }}>{caption}</figcaption>
    </figure> : img;
};

This topic describes how to configure features for your managed accounts, including service approval requirements, pricing visibility, and minimum term renewal settings.

Partner account Company Admins can configure these features individually for each managed account to control service ordering workflows and information visibility.

## Feature configuration options

You can configure the following features for each managed account:

* **Minimum Term Renewal** -- Set the default behavior for automatic renewal of service contracts at the same duration and price. For more information, see [Managing Minimum Term Renewal](/partners/account/auto-renew).

* **Service Approval Queue** -- Require partner approval before managed account users can order new services, make changes to existing services, or terminate services. For more information, see [Service Approval Queue](/partners/services/service-approval-queue).

* **Show Pricing** -- Display retail pricing information to managed account users. When enabled, managed account users can view:

  * monthly rates and term costs during service ordering.
  * pricing details in service approval requests.
  * cost estimates for service changes.

  When disabled, all pricing information is hidden from managed account users, including the pricing section in order requests. For more information about pricing visibility, see [What Users Can View and Access](/partners/access).

* **Cross Connect** -- Control whether Megaport-supported managed account users can add a Megaport-provisioned Cross Connect when ordering a new Port. When set to **Allowed**, eligible users can request a Cross Connect while ordering a Port. When set to **Not Allowed**, they can still arrange a Cross Connect directly with the data center. You can configure this setting only for Megaport-supported managed accounts, and independently of the Service Approval Queue. For partner-supported managed accounts, the option is grayed out. For more information about Cross Connects, see [Ordering a Cross Connect](/connections/cross-connect).

## Navigating to feature configuration

### During managed account creation

When you are creating a new managed account, the Feature Configuration prompt appears after you click **Create**, allowing you to configure features during account creation.

For step-by-step instructions on creating a managed account, see [Creating a Managed Account](/partners/account/create-managed).

### For existing managed accounts

**To access feature configuration for an existing managed account**

1. Log in to the <Link href="https://portal.megaport.com">Megaport Portal</Link> as a Company Admin.

2. Click **Partner Admin** in the left navigation.

   <Image src="/images/partners/account/partner-admin-tab.png" shadow={true} width={1000} />

3. From the Managed Accounts page, find the account you want to configure.\
   You can use the filter at the top of the page to focus the list, or sort by column.

   <Image src="/images/partners/account/tscd-managed-acct-list.png" shadow={true} width={1000} />

4. Click **Edit** next to the managed account.\
   The Account Overview for the managed account is displayed.

5. Select the **Feature Configuration** tab.\
   The feature configuration settings for that managed account are displayed.

   <Image src="/images/partners/account/auto-renew-override.png" shadow={true} width={650} />

6. Activate or deactivate features as required.\
   Changes are saved automatically and take effect immediately.

## Viewing feature settings across all managed accounts

The Partner Admin page displays a table view of all your managed accounts and the features enabled or disabled for each account, making it easy to review settings across accounts at a glance.

**To view feature settings for all managed accounts**

1. Log in as a Company Admin.
2. Click **Partner Admin** in the left navigation.

The table displays each managed account with columns showing whether each feature is enabled or disabled.

<Image src="/images/partners/account/tscd-managed-acct-list.png" shadow={true} width={1000} />

## Helpful references

* [Creating a Managed Account](/partners/account/create-managed)
* [Managing Minimum Term Renewal](/partners/account/auto-renew)
* [Service Approval Queue](/partners/services/service-approval-queue)
* [What Account Users Can View and Access](/partners/access)
