The output of "When a new event is created (V2)" is of the format: '2019-07-05T16:00:00.00 00:00'
This throws an error if used as input to "Get calendar view of events (V2)". For example:
Invalid value '2019-07-05T16:00:00.00 00:00' for parameter 'Start Time'. clientRequestId: 5f173fe1-b0af-4b25-afde-328d14fbf452
I tested by manually editing this date, which worked. Then, as a workaround, I inserted "Convert time zone" which takes this input and outputs it to UTC time. (Good that this event can process such a value!)
Input to "Convert time zone":
{ "baseTime": "2019-07-05T17:00:00.0000000+00:00", "formatString": "o", "sourceTimeZone": "UTC", "destinationTimeZone": "UTC" }
Output (which was accepted by "Get calendar view of events (V2)"):
{ "body": "2019-07-05T17:00:00.0000000Z" }
I am reporting this so hopefully this can be fixed so that the output of the "When a new event is created (V2)" can be consumed directly by "Get calendar view of events (V2)".