Calendar.get_events not returning events when called from Node-Red

I am writing an automation to get all calendar events. I can call the calendar.get_events action and get the desired results. However doing exactly this in node-red is not returning any results. I have tried playing with date/time formats but nothing works in node-red. Must be doing something stupid, but I am not able to figure this out. Please help!

This works -

action: calendar.get_events
target:
  entity_id:
    - calendar.family
data:
  start_date_time: "2025-02-22T20:00:00.000Z"
  end_date_time: "2025-02-24 00:00:00"

This DOES NOT work -
[{"id":"4c4e99c74658cfda","type":"tab","label":"Flow 1","disabled":false,"info":"","env":[ ]},{"id":"287f0d8bc20189eb","type":"inject","z":"4c4e99c74658cfda","name":"","props":[{"p":"payload"},{"p":"topic","vt":"str"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"","payloadType":"date","x":150,"y":130,"wires":[["f024118389d85f89"]]},{"id":"f024118389d85f89","type":"api-call-service","z":"4c4e99c74658cfda","name":"Test Get","server":"23cb1f57.92261","version":7,"debugenabled":false,"action":"calendar.get_events","floorId":[],"areaId":[],"deviceId":[],"entityId":["calendar.family"],"labelId":[],"data":"{\"start_date_time\":\"2025-02-22T00:00:00Z\",\"end_date_time\":\"2025-02-22T22:00:00Z\"}","dataType":"json","mergeContext":"","mustacheAltTags":false,"outputProperties":[],"queue":"none","blockInputOverrides":false,"domain":"calendar","service":"get_events","x":340,"y":130,"wires":[["f7808ef726f2996d"]]},{"id":"f7808ef726f2996d","type":"debug","z":"4c4e99c74658cfda","name":"debug 5","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"true","targetType":"full","statusVal":"","statusType":"auto","x":510,"y":130,"wires":[]},{"id":"23cb1f57.92261","type":"server","name":"Home Assistant","version":5,"addon":true,"rejectUnauthorizedCerts":true,"ha_boolean":"y|yes|true|on|home|open","connectionDelay":true,"cacheJson":true,"heartbeat":false,"heartbeatInterval":30,"areaSelector":"friendlyName","deviceSelector":"friendlyName","entitySelector":"friendlyName","statusSeparator":"at: ","statusYear":"hidden","statusMonth":"short","statusDay":"numeric","statusHourCycle":"h23","statusTimeFormat":"h:m","enableGlobalContextStore":true}]

In the Output Properties of the action node set a message property to “results”

No way I skipped this! Thanks a ton man! I kept looking at date time format/timezone and missed this!