My code doesn't seems to be adding up somewhere. I want to schedule a new meeting after I captured it with "meeting capture". However, if I set up a new meeting, the exported time seems to be less 4 hours of my time. It shows correctly in my meeting capture app.
Here is my code that set the chosen time to the export time:
Set(FollowUpStart, ThisItem.StartTime);
Set(FollowUpEnd,ThisItem.EndTime)
This is where the meeting is created:
/*creates calendar event for meeting*/
Office365.CalendarPostItem(
MyCalendarID,
FollowUpEnd,
FollowUpStart,
FollowUpSubject.Text,
{
Body: {
Content: FollowUpMessage.Text,
ContentType: "Text"
},
Attendees: ForAll(
FollowUpMeetingAttendees,
{
Type: "required",
Status: {
Response: "none",
Time: "0001-01-01T00:00:00Z"
},
EmailAddress: {
Name: DisplayName,
Address: UserPrincipalName
}
}
)
}
);
Set(
FollowUpConfirmed,
true
);
Navigate(
ConfirmScreen,
None
)
Can someone please help me? Its setting a meeting for 4 am and it needs to be at 8 am.