Expand my Community achievements bar.

Latest Community Ideas Review is Out: Discover What’s New and What to Expect!

Creating an all day event in the Micrsoft 365 calendar module

Avatar

Level 2

10/17/24

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 Comment

Avatar

Level 10

10/20/24

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