> ## 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.

# Managing your Megaport Marketplace Profile

> This help topic describes how to manage your Megaport Marketplace profile.

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;
};

The Megaport Marketplace option on the Settings menu allows you to create and manage your Megaport Marketplace profile.

Choose User Menu > Admin Settings > Megaport Marketplace to manage your Megaport Marketplace profile.

<Image src="/images/portal-admin/marketplace-profile.png" alt="This image shows the Megaport Marketplace profile page." shadow={true} width={850} />

## Creating a Megaport Marketplace profile

If you do not have a Megaport Marketplace profile, click **Edit** to begin entering details.
For more information about creating a Megaport Marketplace profile, see [Creating a Megaport Marketplace Profile](/marketplace/profile).

## Updating a Megaport Marketplace profile

If you already have a Megaport Marketplace profile, click **Edit** to update your details.
For more information, see [Changing your profile](/marketplace/profile#changing-your-profile).

## Helpful references

* [Megaport Marketplace Overview](/marketplace/overview)
* [Creating a Megaport Marketplace Profile](/marketplace/profile)
* [Requesting a Connection to a Service Provider](/marketplace/connections)
* [Megaport Marketplace Frequently Asked Questions (FAQs)](/marketplace/marketplace-faqs)
