Is Microsoft Teams Down? How to Check Teams Status Right Now

Microsoft Teams not loading? Calls dropping or chats not sending? Learn how to check if Teams is down, what breaks during an outage, and how to get instant alerts so your organization stays connected.

By Statusfield Team · Engineering··7 min read

Microsoft Teams is the communication hub for hundreds of millions of enterprise users. When it goes down — and it does — meetings fail, chats go silent, and entire organizations scramble to figure out if it's their network or Microsoft's. Here's how to know immediately.

Is Microsoft Teams Down Right Now?

Check these sources in order:

  1. Statusfield — Microsoft Teams status — real-time monitoring, updated continuously.
  2. Microsoft 365 Service Health dashboard — if you're an admin, go to admin.microsoft.com → Health → Service Health for real-time incident data specific to your tenant.
  3. Twitter/X — search Microsoft Teams down sorted by Latest. Enterprise outages generate significant social media traffic.
  4. Downdetector — user-reported outage spikes with geographic distribution.

What Actually Breaks During a Teams Outage

Teams is deeply integrated with Microsoft 365. A failure in any shared dependency ripples through:

ComponentWhat it doesImpact when down
Teams ChatDirect messages and group chatsMessages not sending or delivering
Teams CallsVOIP calls and PSTN callingVoice calls fail to connect
Teams MeetingsVideo conferencingCan't join or start meetings
Teams ChannelsTeam collaboration spacesChannel messages unavailable
Teams FilesSharePoint-backed file sharing in channelsFiles won't open or upload
Microsoft 365 Auth (AAD)Login and identityCan't log into Teams or any M365 app
Exchange OnlineEmail (backs calendar in Teams)Calendar events don't sync to Teams
SharePoint OnlineBackend for Teams FilesAll file operations in Teams fail
Teams Admin CenterIT management of TeamsCan't manage policies or users
Teams API / Graph APIDeveloper integrationsBots, apps, and Graph-based integrations break

Common Microsoft Teams Error Symptoms

What you seeWhat it usually means
"We ran into a problem. Sign in again"Azure AD authentication issue
Meeting shows "This site can't be reached"Teams meeting infrastructure degraded
Chats send but show no delivery receiptMessage delivery backlogged
Teams app stuck on loading screenService outage or corrupt local cache
"You don't have access to this content"SharePoint/permissions propagation lag
Calls connect but audio is one-directionalTeams media relay degraded
Bot or app in Teams not respondingTeams API / Microsoft Graph degraded

Why Microsoft Teams Goes Down

Azure Active Directory failures. Teams relies entirely on AAD for authentication. When AAD has an issue, no one can log into Teams (or any Microsoft 365 service). These are the most disruptive outages.

SharePoint Online dependency. All files shared in Teams channels live in SharePoint. A SharePoint degradation breaks Teams file operations even if Teams chat itself is fine.

Teams media infrastructure. Video and audio in Teams calls route through Microsoft's media relay servers. Regional network events or media infrastructure failures cause call quality degradation or complete failure.

Microsoft 365 at scale. With hundreds of millions of users, even a 0.01% infrastructure failure rate causes millions of user-facing errors simultaneously.

What to Do When Microsoft Teams Is Down

Immediate steps:

  1. Check if it's authentication — if you can't log in at all, Azure AD is likely the issue, meaning all Microsoft 365 apps are affected, not just Teams.
  2. Try the web version — go to teams.microsoft.com in a browser. Sometimes the desktop app has issues that the web app doesn't, and vice versa.
  3. Clear the Teams cache — for persistent issues, close Teams, clear the cache folder (%appdata%\Microsoft\Teams\Cache on Windows), and restart. This resolves many non-outage app issues.
  4. Activate your backup channel — if Teams is down for meetings, have a standing Zoom or Google Meet link ready for critical calls.

For IT admins:

Check the Microsoft 365 Service Health dashboard in admin.microsoft.com. This gives you tenant-specific information, incident tracking numbers, and estimated resolution times that the public status page doesn't provide.

Building Teams-Resilient Workflows

Don't rely solely on Teams for critical external meetings. Share both a Teams link and a Zoom/Meet backup link in calendar invites for high-stakes calls — job interviews, client demos, board meetings.

Handle Microsoft Graph API failures gracefully

If your application integrates with Teams via Microsoft Graph:

import requests
import time
 
def post_teams_message(token, team_id, channel_id, message):
    url = f"https://graph.microsoft.com/v1.0/teams/{team_id}/channels/{channel_id}/messages"
    for attempt in range(4):
        response = requests.post(
            url,
            headers={"Authorization": f"Bearer {token}"},
            json={"body": {"content": message}}
        )
        if response.status_code == 503:
            time.sleep(2 ** attempt)
            continue
        response.raise_for_status()
        return response.json()
    raise Exception("Teams API unavailable")

Monitor your Teams integration health

If you use Teams bots or Graph API integrations, track API call success rates. A degraded Graph API appears long before Microsoft officially posts an incident.

How to Get Instant Microsoft Teams Outage Alerts

Monitor Microsoft Teams on Statusfield and get alerted the moment Teams or its dependencies change status. Route alerts to email or webhook so your IT team can communicate early and prepare fallbacks.

Start monitoring Microsoft Teams →


Frequently Asked Questions

Is Microsoft Teams down for everyone or just me?

Check Statusfield. If you're a Microsoft 365 admin, the Service Health dashboard at admin.microsoft.com gives tenant-specific incident data. If status shows all clear, try the web version at teams.microsoft.com and check your network/VPN configuration.

Why does Teams keep showing "We ran into a problem. Sign in again"?

This is typically an Azure Active Directory authentication issue — either a temporary AAD service degradation or an expired/corrupted token in your Teams client. Try signing out completely, clearing the cache, and signing back in. If the issue persists and admin.microsoft.com shows an AAD incident, it's on Microsoft's end.

Teams chat works but meetings fail — why?

Chat and video meetings run on different Microsoft infrastructure. Chat uses Teams messaging servers; meetings use Teams media relay infrastructure. A media relay degradation can cause meeting failures while chat remains functional. Check the Teams Meeting infrastructure component specifically.

My Teams bot stopped working — is Teams down?

Not necessarily. Teams bots connect through the Microsoft Bot Framework and Microsoft Graph API. Check if the Graph API component is degraded at Statusfield or admin.microsoft.com. Bot issues during a Teams service degradation are normal — the bot isn't broken, the API it connects through is.

How do I get notified when Microsoft Teams goes down?

Set up Teams monitoring on Statusfield. You'll get alerts via email or webhooks the moment Teams or its Microsoft 365 dependencies report an incident — before your meeting fails to start.

Does Microsoft give advance notice for Teams maintenance?

Yes. Planned maintenance is communicated through the Microsoft 365 admin center (Message Center) with advance notice, typically at least one week. Emergency maintenance has less notice but is still communicated through the admin center.

Know the moment a tool you depend on goes down

Statusfield watches 7,000+ services your business depends on and alerts you the moment they break.

Free plan · No credit card