Forum Discussion
AP_TC_ECASD
Jun 28, 2025Brass Contributor
MS Graph API - isMeetingInviteToCustomersEnabled Not Working
I have a PA Flow running a Create Service call and everything else works except the isMeetingInviteToCustomersEnabled and I can't seem to figure out why. I have it embedded in 'schedulingPolicy' as I...
Jul 28, 2025
You're placing:
"isMeetingInviteToCustomersEnabled": true
inside the schedulingPolicy object — but it should be at the root level of the service JSON, not inside schedulingPolicy.
Here's where it should go:
{
"displayName": "...",
"description": "...",
...
"isMeetingInviteToCustomersEnabled": true, <-- 🔥 THIS GOES HERE
"schedulingPolicy": {
...
},
...
}
So your updated payload should look like this (relevant part only):
{
"displayName": "...",
"description": "...",
"defaultDuration": "...",
...
"isMeetingInviteToCustomersEnabled": true, <-- ✅ CORRECT PLACEMENT
"schedulingPolicy": {
"customAvailabilities": [...],
"generalAvailability": {...},
...
},
...
}
------------------------------------
Don't forget to mark as solution if my answer suits you