Fixing the "Microsoft Teams Permissions" Error

Written By Brian Gabay

Last updated 9 days ago

If you tried to schedule an interview using Microsoft Teams and saw this message:

"There's an issue with your recruiter's Microsoft Teams permissions, so the meeting link couldn't be created. Please contact your recruiter directly, or reach out to support@arrangeai.io with any questions."

this means the Teams meeting link could not be generated because of a permissions issue on the Microsoft 365 account being used to host the meeting. This is a Microsoft-side permissions issue, not something Arrange can control directly, but it's usually fixable. Here's how to troubleshoot it.

Quick alternative: If you don't need to use Teams specifically, you can switch the interview mode to Zoom or Google Meet and schedule normally while you sort this out.

Step 1: Confirm you can create a Teams meeting manually

Using Outlook:

  1. Open Outlook (desktop or web)

  2. Open your Calendar

  3. Click New Event or New Meeting

  4. Click Teams Meeting (or Add online meeting, if available)

  5. Save the meeting

Using Microsoft Teams:

  1. Open Microsoft Teams

  2. Go to the Calendar section

  3. Click New Meeting

  4. Enter any title and save the meeting

If either of these fails, note the exact error message. That's a strong sign the issue is on the Microsoft 365 side and step 3 below will confirm it.

Step 2: Test the connection in Microsoft Graph Explorer

  1. Go to https://developer.microsoft.com/graph/graph-explorer

  2. Sign in with the same Microsoft work account you use for scheduling

  3. If prompted, allow the requested permissions, especially Calendars.ReadWrite

  4. Change the request method from GET to POST

  5. In the request URL field, enter: https://graph.microsoft.com/v1.0/me/events

  6. Paste the following into the Request Body (replace with your own email as the attendee):

{ "subject": "Graph Explorer Test Meeting", "body": { "contentType": "HTML", "content": "<p>This is a test meeting.</p>" }, "start": { "dateTime": "2026-08-01T10:00:00", "timeZone": "America/New_York" }, "end": { "dateTime": "2026-08-01T10:30:00", "timeZone": "America/New_York" }, "isOnlineMeeting": true, "attendees": [ { "emailAddress": { "address": "YOUR_EMAIL_ADDRESS", "name": "Your Name" }, "type": "required" } ], "showAs": "busy", "hideAttendees": false }
  1. Click Run Query

  2. If it succeeds, the permissions are likely fine on this account and the issue may be intermittent. If it fails, note the full error message. If Graph Explorer asks you to consent to additional permissions before running the request, allow them and try again.

Step 3: Check with your Microsoft 365 or IT administrator

If steps 1 or 2 failed, this is typically something only your IT admin can resolve. Ask them to confirm:

  • Is your mailbox hosted in Exchange Online?

  • Is there anything unusual about your Exchange Online mailbox or Teams configuration that could prevent Teams meetings from being created via Microsoft Graph?

Still stuck?

Reach out to support@arrangeai.io with what you found in the steps above (especially any error messages or screenshots), and we'll help you get it sorted.