How to Add and Delete Events in a My Calendar in Zoho Calendar from CRM

How to Add and Delete Events in a My Calendar in Zoho Calendar from CRM

Hello,

I want to add and delete Events in a My Calendar that is under the Zoho Calendar, from a Workflow in our CRM.



I don't want those Events in the CRM Calendar.

I have been trying the Webhook approach, using the Calendar ID and Calendar UID that can be found in My Calendars Settings.

For the add new event:

https://calendar.zoho.com/api/v1/calendars/{CALENDAR-ID}/events?eventdata=
(JSON BODY):
{
    "dateandtime": {
      "timezone": "Asia/Kolkata",
      "start": "20231020T180000Z",
      "end": "20231020T180000Z"
    },
      "title": "ANY TITLE"
}

For this webhook I am using a Connection:



It just doesnt work.


I have also tried with the CRM Calendar_id, but it doesn't work either.

May be i need to make a deluge function instead of a webhook, but i am not that geek :)

I mean, if you can share a script, i will follow.

(Nevertheless, i think a webhook is a more simple and clean approach)

Any thoughts?