This topic was automatically generated from Slack. You can find the original thread here.
Hey all, getting a persistent error with google_calendar-create-event. Every request fails with: “Start and end times must either both be date or both be dateTime.”
Tried multiple formats, all fail:
• RFC3339 with offset:
"eventStartDate": "2025-10-21T14:00:00-04:00",
"eventEndDate": "2025-10-21T16:00:00-04:00"
• Without offset:
"eventStartDate": "2025-10-21T14:00:00",
"eventEndDate": "2025-10-21T16:00:00"
• UTC:
"eventStartDate": "2025-10-21T18:00:00Z",
"eventEndDate": "2025-10-21T20:00:00Z"
• Nested objects:
"start": {
"dateTime": "2025-10-21T14:00:00",
"timeZone": "America/New_York"
},
"end": {
"dateTime": "2025-10-21T16:00:00",
"timeZone": "America/New_York"
}
Same error every time even though both times are in the same format. Known issue?

