This topic was automatically generated from Slack. You can find the original thread here.
Hi everyone ![]()
I’m running into an issue when trying to execute a Pipedream component action, specifically google_calendar-create-event, and I could use some help understanding why it’s failing.
I’m executing the action using the SDK with the following call:
const result = await client.actions.run(payload)
I’m confident that both the client setup and the payload structure are correct, since I’m sending the payload in the following format:
{
"id": "google_calendar-create-event",
"externalUserId": "xxx",
"configuredProps": {
"addType": { "__lv": { "label": "Add Detailed Event", "value": "detailed" } },
"eventStartDate": "2026-01-09T15:00:00.000Z",
"eventEndDate": "2026-01-09T15:20:00.000Z",
"attendees": "[alejandromira3918@hotmail.com](mailto:alejandromira3918@hotmail.com)",
"googleCalendar": { "authProvisionId": "apn_xxx" }
}
}
However, when executing the action—both via Postman using the HTTP endpoint and via the SDK—I consistently receive the following error:
{
"os": [
{
"ts": 1767909321637,
"k": "error",
"err": {
"name": "Error",
"message": "Start and end times must either both be date or both be dateTime.",
"stack": "Error: Start and end times must either both be date or both be dateTime.\n at makeErrorObservation ..."
}
}
],
"exports": {},
"t": {
"ar": 1767909309179,
"br": 1767909309226,
"bp": 1767909309226,
"bls": 1767909309226,
"ble": 1767909321649
}
}
From what I can tell, this seems to be a date format issue. However, the format I’m sending (ISO 8601 with timezone) appears to be correct and is the same format shown in the Pipedream Connect playground.
At this point, I’m trying to understand:
• Why the component is interpreting the start/end values as mismatched (date vs dateTime)
• Whether there’s an additional or implicit field required for this action that I might be missing
Any guidance on what I might be doing wrong or how this action expects the dates to be formatted would be greatly appreciated.
Thanks in advance! ![]()