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:
Open Outlook (desktop or web)
Open your Calendar
Click New Event or New Meeting
Click Teams Meeting (or Add online meeting, if available)
Save the meeting
Using Microsoft Teams:
Open Microsoft Teams
Go to the Calendar section
Click New Meeting
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
Sign in with the same Microsoft work account you use for scheduling
If prompted, allow the requested permissions, especially Calendars.ReadWrite
Change the request method from GET to POST
In the request URL field, enter:
https://graph.microsoft.com/v1.0/me/eventsPaste 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 }Click Run Query
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.