I’m trying to add tasks to TickTick via a Google Sheet.
The input shows that the date is correctly formatted, but for some reason the date isn’t being included in the output bundle:
Input:
[
{
“title”: “NEW TEST”,
“dueDate”: “2024-04-01T09:00:00.000Z”,
“isAllDay”: false,
“projectId”: “654b42a1eaa89ef1f2d95f0f”,
“startDate”: “2024-04-01T09:00:00.000Z”
}
]
Output:
[
{
“id”: “65e8ac978f084dadb4dca562”,
“projectId”: “654b42a1eaa89ef1f2d95f0f”,
“sortOrder”: -2984075102388224,
“title”: “NEW TEST”,
“timeZone”: “Europe/London”,
“isAllDay”: false,
“priority”: 0,
“status”: 0,
“tags”:
}
]
Any ideas? Thanks!