Creating an all day event in the Micrsoft 365 calendar module | Community
Skip to main content
Level 2
October 17, 2024
New

Creating an all day event in the Micrsoft 365 calendar module

  • October 17, 2024
  • 1 reply
  • 344 views

Hi all,

 

I tried searching for an answer and have done extensive testing, but have not yet arrived at a solution.

 

Is there a way in the Microsoft 365 calendar module to set the parameter so when an event is created, it creates an all day event in your home calendar?

 

I have been exploring the configuration/parameters in the module but have not seen a way to do this.  This will be a great value add to our organization.

 

Thank you for your help,

 

Nick

1 reply

lgaertner
Level 9
October 21, 2024

Hello Nick,

 

This is more a Microsoft 365 calendar API related question.

 

As the given modules in Fusion sometimes do not provide all parameters, you should try around using the Make an API Call module using a POST request like this:

{ "subject" : "<subject>", "body" : { "contentType" : "text", "content" : "<message>" }, "isAllDay" : true, "isReminderOn" : false, "transactionId" : "<unique_id>", "showAs" : "free", "originalStartTimeZone" : "UTC", "originalEndTimeZone" : "UTC", "start" : { "dateTime" : "<YYYY-MM-DD_of_all_day_event>T00:00:00.0000000", "timeZone" : "UTC" }, "end" : { "dateTime" : "<YYYY-MM-DD_of_all_day_event+1>T00:00:00.0000000", "timeZone" : "UTC" }, "location" : { "displayName" : "<location>" } }

 

You could also use the Fusion DevTools to find out, how the Create an Event module is working and adapt your findings to the Make an API Call module.

 

Regards

Lars