"9024: Exception of type 'Microsoft.Skype.SkypeCast.SchedulerWebRole.BusinessLogic.Teams.Common.Exceptions.TeamsMeetingProcessorException' was thrown."
Ruby Ch
0
Reputation points
Hi I am getting a forbidden response when I am trying to create a meeting from postman side. I successfully got the access token using this endpoint and grant type:
POST /{{tenantID}}/oauth2/v2.0/token HTTP/1.1
Host: login.microsoftonline.com
Content-Type: application/x-www-form-urlencoded
Cookie: fpc=Aib8CXoQEVFNjWL2yzXG7fesjrOMAQAAAFTI8d4OAAAAV0Az2gIAAACSyPHeDgAAAA
Content-Length: 1746
grant_type=authorization_code&code={{code}}&client_id={{client_id}}&client_secret={{client_secret}}&redirect_uri=https%3A%2F%2Foauth.pstmn.io%2Fv1%2Fcallback&scope=offline_access%20OnlineMeetings.ReadWrite
For creating meeting:
POST /v1.0/me/onlineMeetings HTTP/1.1
Host: graph.microsoft.com
Content-Type: application/json
Authorization: ••••••
Content-Length: 157
{
"startDateTime": "2024-12-17T14:30:34.2444915-07:00",
"endDateTime": "2024-12-17T15:00:34.2464912-07:00",
"subject": "User Token Meeting"
}
Got the response:
{
"error": {
"code": "Forbidden",
"message": "9024: Exception of type 'Microsoft.Skype.SkypeCast.SchedulerWebRole.BusinessLogic.Teams.Common.Exceptions.TeamsMeetingProcessorException' was thrown.",
"innerError": {
"date": "2024-12-16T07:17:07",
"request-id": "cef8d956-1746-4530-aea4-a2af8e9ca55c",
"client-request-id": "cef8d956-1746-4530-aea4-a2af8e9ca55c"
}
}
}
I have set the permission on Azure Portal as well
Still getting the same response, what could be the issue?
Sign in to answer