Creating an outlook appointmet in the users personal calendar

0
I am trying to create an outlook appointment using the Microsoft API and a ‘call rest’ module. I have used both the API from graph explorer found at “https://docs.microsoft.com/en-us/graph/outlook-calendar-concept-overview” and the API found at “https://docs.microsoft.com/en-us/graph/api/calendar-post-events?view=graph-rest-1.0&tabs=javascript”. Neither is very clear on what to enter in the other fields or which coding language to use.  Has anyone already achieved this functionality in their programs? If so I would very much appreciate your insights.
asked
1 answers
0

Hi Chris,

You can use the second link for creating an appointment.

 

Use a REST-Call action to the URL mentioned:

 

Then you build your request-body (in JSON):

 

Here you can edit your appointment infos (e.g. “subject” would be the title of the appointment, “attendees” would contain a list of email adresses).

Here is a large list with attributes that you can set for the appointment via the REST API.

 

I hope this helped!

answered