Zoom Meeting Time not matching

Ok so here is the issue iam webhooking in to make with an appointment from GHL/leadconnector

this is what i have in the output bundle from the webhook

        "title": "Rod Kesselring",
        "selectedTimezone": "US/Central",
        "appointmentId": "qV6GPAOAxUYFf5ZtVrZl",
        "startTime": "2025-05-02T13:30:00",
        "endTime": "2025-05-02T14:00:00",

the input bundle for zoom Create meeting is

    "topic": "Rod Kesselring",
    "start_time": "2025-05-02T17:30:00.000Z",

But that is 1 hour off. 17:30 Z is 12:30 CST and it should be 1:30CST

I am not manually changing the timezone I am leaving it UTC.

this is what i see and it seems to be converting it weird

Can someone please help???

You first have to “ingest” the startTime variable into Make, specifying the correct timezone.

If you do not do that, Make will parse it in UTC and then send it in your orgs timezone, hence the hours difference.

According to the Tokens you can use to parse a date string, you can use YYYY-MM-DDTHH:mm:ss.

e.g.:

{{ parseDate(1.string; "YYYY-MM-DDTHH:mm:ss"; "US/Central") }}

For more information, see Date Format links below.

Here are some useful links and guides you can use to learn more on how to use the Make platform, apps, and app modules. I found these useful when I was learning Make, and hope they might benefit you too —

Getting Started

Help Centre Basics

Articles & Videos

Hope this helps! Let me know if there are any further questions or issues.

@samliew