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

# Contacting Support

> This help topic describes how to contact the Megaport Support team.

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

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

Need help with something? A great first step is to check out the Megaport Documentation on this site and save yourself the time collating relevant information and lodging a support request. We regularly update our content to address common call drivers.

If you need to raise an issue with our Support teams, you can create and manage your own support cases using the Support Requests Portal. For more information, see [Support Requests Portal](/support/support-portal).

Alternatively, get in touch with our dedicated Support teams using live chat or by calling us. The Support teams are ready to guide you through everything from creating a Megaport account, provisioning network connections, responding to incidents, to answering general inquiries.

<Callout icon="triangle-exclamation" color="red">
  If your account is managed by a Megaport partner, contact your partner for your support options. Most partners provide their own first-level support.
</Callout>

## Support Requests Portal

Your primary support channel is the Support Requests Portal. Use the Support Requests Portal to create, manage, and follow up on support cases. Our Support team will monitor and process your support cases.
For more information, see [Support Requests Portal](/support/support-portal).

## Live chat 24/7/365

Reach out to our in-house Support team any time of day or night.

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

2. Click the blue live chat icon to open a chat window and start a conversation.
   <Image src="/images/support/chat.png" alt="This image shows the icon that you click to start a chat with support. It is a blue circle that contains a white speech bubble. It is usually in the bottom right hand corner of the screen" shadow={true} />

## Phone

Reach out to our Support team through the number best for your region:

* USA +1 425 954 2777
* Australia +61 7 3062 7601
* New Zealand +64 508 050 877
* United Kingdom +44 1 202 286 622
* France +33 187 214 799
* Germany +49 32 211 121 713
* Hong Kong +852 800 906 081
* Japan +81 120 645 081
* Singapore +65 6335 3863

## What you need before submitting a support request

Providing the correct information to Megaport is critical for efficient and effective assistance. When engaging our team, include the following information:

* Service ID(s)
* Company / organization
* Description of request

When reporting an incident, also include the following information:

* Problem symptom
* Start time of issue
* End time of issue (if resolved/mitigated)
* What changes or actions were performed before the issue started?
* What troubleshooting steps have already been taken?

<Image src="/images/support/supportal-diag-1.png" alt="Support request" shadow={true} width={900} />
