Create an online meeting from Pega Infinity V86 using MS Graph API
Continuation to my earlier post: Click , here I extended my research on the same MS Graph API services to create an online meeting(Teams) and send the meeting link to the invitees. First, I started experimenting the API service calls in my Postman tool and then later I worked on the same in Pega V86. As I mentioned in the above post, one must have a valid Azure id to work on this exercise. A part from this, we need to have the proper API permissions for this id to perform all the below mentioned steps. Here I am giving a snapshot of API permissions. Steps followed in Postman along with Pega side changes: 1) Get the access token using OAuth mechanism ( Pega => Authentication Profile rule ) 2) Create an online meeting using POST API call (Pega => Connect-REST ) 3) Send email to the invitees using POST API call (Pega => Connect-REST ) Below are the Pega implementation for the above steps. Authentication Profile instance: Connect-REST for create an online meeting ...