UnParsable Date From Zoho Calendar
Hi,
I'm trying to send new events created in Zoho Calendar over to Todoist and have an issue with the date format in Zoho Calendar.
The Date format Todoist needs is 2016-09-01T11:00:00
Zoho calendar date looks like this: 20190612T160000+0100
I'm trying to use the following to convert the date:
string ConvertCalendarDAte(String CalDate)
{
result = CalDate.toString("yyy-MM-ddTHH:MM:SS");
return result;
}
The error is get is :
UnParsable date at line number 3. Resolve the errors and try executing it again
It looks like the Zoho Calendar date format is not recognised by the date parser.
Any suggestions?
Thanks for your help.
Rgds
Jon