{
  "schemaVersion": "1.0",
  "item": {
    "slug": "zoho-calendar",
    "name": "Zoho Calendar",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/byungkyu/zoho-calendar",
    "canonicalUrl": "https://clawhub.ai/byungkyu/zoho-calendar",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/zoho-calendar",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=zoho-calendar",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "LICENSE.txt"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/zoho-calendar"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/zoho-calendar",
    "agentPageUrl": "https://openagent3.xyz/skills/zoho-calendar/agent",
    "manifestUrl": "https://openagent3.xyz/skills/zoho-calendar/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/zoho-calendar/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Zoho Calendar",
        "body": "Access the Zoho Calendar API with managed OAuth authentication. Manage calendars and events with full CRUD operations, including recurring events and attendee management."
      },
      {
        "title": "Quick Start",
        "body": "# List calendars\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-calendar/api/v1/calendars')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Base URL",
        "body": "https://gateway.maton.ai/zoho-calendar/api/v1/{endpoint}\n\nThe gateway proxies requests to calendar.zoho.com/api/v1 and automatically injects your OAuth token."
      },
      {
        "title": "Authentication",
        "body": "All requests require the Maton API key in the Authorization header:\n\nAuthorization: Bearer $MATON_API_KEY\n\nEnvironment Variable: Set your API key as MATON_API_KEY:\n\nexport MATON_API_KEY=\"YOUR_API_KEY\""
      },
      {
        "title": "Getting Your API Key",
        "body": "Sign in or create an account at maton.ai\nGo to maton.ai/settings\nCopy your API key"
      },
      {
        "title": "Connection Management",
        "body": "Manage your Zoho Calendar OAuth connections at https://ctrl.maton.ai."
      },
      {
        "title": "List Connections",
        "body": "python <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections?app=zoho-calendar&status=ACTIVE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Create Connection",
        "body": "python <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'app': 'zoho-calendar'}).encode()\nreq = urllib.request.Request('https://ctrl.maton.ai/connections', data=data, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Get Connection",
        "body": "python <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nResponse:\n\n{\n  \"connection\": {\n    \"connection_id\": \"21fd90f9-5935-43cd-b6c8-bde9d915ca80\",\n    \"status\": \"ACTIVE\",\n    \"creation_time\": \"2025-12-08T07:20:53.488460Z\",\n    \"last_updated_time\": \"2026-01-31T20:03:32.593153Z\",\n    \"url\": \"https://connect.maton.ai/?session_token=...\",\n    \"app\": \"zoho-calendar\",\n    \"metadata\": {}\n  }\n}\n\nOpen the returned url in a browser to complete OAuth authorization."
      },
      {
        "title": "Delete Connection",
        "body": "python <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}', method='DELETE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Specifying Connection",
        "body": "If you have multiple Zoho Calendar connections, specify which one to use with the Maton-Connection header:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-calendar/api/v1/calendars')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Maton-Connection', '21fd90f9-5935-43cd-b6c8-bde9d915ca80')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nIf omitted, the gateway uses the default (oldest) active connection."
      },
      {
        "title": "Calendars",
        "body": "List Calendars\n\nGET /zoho-calendar/api/v1/calendars\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-calendar/api/v1/calendars')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nResponse:\n\n{\n  \"calendars\": [\n    {\n      \"uid\": \"fda9b0b4ad834257b622cb3dc3555727\",\n      \"name\": \"My Calendar\",\n      \"color\": \"#8cbf40\",\n      \"textcolor\": \"#FFFFFF\",\n      \"timezone\": \"PST\",\n      \"isdefault\": true,\n      \"category\": \"own\",\n      \"privilege\": \"owner\"\n    }\n  ]\n}\n\nGet Calendar Details\n\nGET /zoho-calendar/api/v1/calendars/{calendar_uid}\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-calendar/api/v1/calendars/fda9b0b4ad834257b622cb3dc3555727')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nCreate Calendar\n\nPOST /zoho-calendar/api/v1/calendars?calendarData={json}\n\nRequired Fields:\n\nname - Calendar name (max 50 characters)\ncolor - Hex color code (e.g., #FF5733)\n\nOptional Fields:\n\ntextcolor - Text color hex code\ndescription - Calendar description (max 1000 characters)\ntimezone - Calendar timezone\ninclude_infreebusy - Show as Busy/Free (boolean)\npublic - Visibility level (disable, freebusy, or view)\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json, urllib.parse\n\ncalendarData = {\n    \"name\": \"Work Calendar\",\n    \"color\": \"#FF5733\",\n    \"textcolor\": \"#FFFFFF\",\n    \"description\": \"My work calendar\"\n}\n\nurl = f'https://gateway.maton.ai/zoho-calendar/api/v1/calendars?calendarData={urllib.parse.quote(json.dumps(calendarData))}'\nreq = urllib.request.Request(url, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nResponse:\n\n{\n  \"calendars\": [\n    {\n      \"uid\": \"86fb9745076e4672ae4324f05e1f5393\",\n      \"name\": \"Work Calendar\",\n      \"color\": \"#FF5733\",\n      \"textcolor\": \"#FFFFFF\"\n    }\n  ]\n}\n\nDelete Calendar\n\nDELETE /zoho-calendar/api/v1/calendars/{calendar_uid}\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-calendar/api/v1/calendars/86fb9745076e4672ae4324f05e1f5393', method='DELETE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nResponse:\n\n{\n  \"calendars\": [\n    {\n      \"uid\": \"86fb9745076e4672ae4324f05e1f5393\",\n      \"calstatus\": \"deleted\"\n    }\n  ]\n}"
      },
      {
        "title": "Events",
        "body": "List Events\n\nGET /zoho-calendar/api/v1/calendars/{calendar_uid}/events?range={json}\n\nQuery Parameters:\n\nParameterTypeDescriptionrangeJSON objectRequired. Start and end dates in format {\"start\":\"yyyyMMdd\",\"end\":\"yyyyMMdd\"}. Max 31-day span.byinstancebooleanIf true, recurring event instances are returned separatelytimezonestringTimezone for datetime values\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json, urllib.parse\nfrom datetime import datetime, timedelta\n\ntoday = datetime.now()\nend_date = today + timedelta(days=7)\nrange_param = json.dumps({\n    \"start\": today.strftime(\"%Y%m%d\"),\n    \"end\": end_date.strftime(\"%Y%m%d\")\n})\n\nurl = f'https://gateway.maton.ai/zoho-calendar/api/v1/calendars/fda9b0b4ad834257b622cb3dc3555727/events?range={urllib.parse.quote(range_param)}'\nreq = urllib.request.Request(url)\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nResponse:\n\n{\n  \"events\": [\n    {\n      \"uid\": \"c63e8b9fcb3e48c2a00b16729932d636@zoho.com\",\n      \"title\": \"Team Meeting\",\n      \"dateandtime\": {\n        \"timezone\": \"America/Los_Angeles\",\n        \"start\": \"20260206T100000-0800\",\n        \"end\": \"20260206T110000-0800\"\n      },\n      \"isallday\": false,\n      \"etag\": \"1770368451507\",\n      \"organizer\": \"user@example.com\"\n    }\n  ]\n}\n\nGet Event Details\n\nGET /zoho-calendar/api/v1/calendars/{calendar_uid}/events/{event_uid}\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-calendar/api/v1/calendars/fda9b0b4ad834257b622cb3dc3555727/events/c63e8b9fcb3e48c2a00b16729932d636@zoho.com')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nCreate Event\n\nPOST /zoho-calendar/api/v1/calendars/{calendar_uid}/events?eventdata={json}\n\nRequired Fields (in eventdata):\n\ndateandtime - Object with start, end, and optionally timezone\n\nFormat: yyyyMMdd'T'HHmmss'Z' (GMT) for timed events\nFormat: yyyyMMdd for all-day events\n\nOptional Fields:\n\ntitle - Event name\ndescription - Event details (max 10,000 characters)\nlocation - Event location (max 255 characters)\nisallday - Boolean for all-day events\nisprivate - Boolean to hide details from non-delegates\ncolor - Hex color code\nattendees - Array of attendee objects\nreminders - Array of reminder objects\nrrule - Recurrence rule string (e.g., FREQ=DAILY;COUNT=5)\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json, urllib.parse\nfrom datetime import datetime, timedelta\n\nstart_time = datetime.utcnow() + timedelta(hours=1)\nend_time = start_time + timedelta(hours=1)\n\neventdata = {\n    \"title\": \"Team Meeting\",\n    \"dateandtime\": {\n        \"timezone\": \"America/Los_Angeles\",\n        \"start\": start_time.strftime(\"%Y%m%dT%H%M%SZ\"),\n        \"end\": end_time.strftime(\"%Y%m%dT%H%M%SZ\")\n    },\n    \"description\": \"Weekly team sync\",\n    \"location\": \"Conference Room A\"\n}\n\nurl = f'https://gateway.maton.ai/zoho-calendar/api/v1/calendars/fda9b0b4ad834257b622cb3dc3555727/events?eventdata={urllib.parse.quote(json.dumps(eventdata))}'\nreq = urllib.request.Request(url, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nResponse:\n\n{\n  \"events\": [\n    {\n      \"uid\": \"c63e8b9fcb3e48c2a00b16729932d636@zoho.com\",\n      \"title\": \"Team Meeting\",\n      \"dateandtime\": {\n        \"timezone\": \"America/Los_Angeles\",\n        \"start\": \"20260206T100000-0800\",\n        \"end\": \"20260206T110000-0800\"\n      },\n      \"etag\": \"1770368451507\",\n      \"estatus\": \"added\"\n    }\n  ]\n}\n\nUpdate Event\n\nPUT /zoho-calendar/api/v1/calendars/{calendar_uid}/events/{event_uid}?eventdata={json}\n\nRequired Fields:\n\ndateandtime - Start and end times\netag - Current etag value (from Get Event Details)\n\nOptional Fields: Same as Create Event\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json, urllib.parse\nfrom datetime import datetime, timedelta\n\nstart_time = datetime.utcnow() + timedelta(hours=2)\nend_time = start_time + timedelta(hours=1)\n\neventdata = {\n    \"title\": \"Updated Team Meeting\",\n    \"dateandtime\": {\n        \"timezone\": \"America/Los_Angeles\",\n        \"start\": start_time.strftime(\"%Y%m%dT%H%M%SZ\"),\n        \"end\": end_time.strftime(\"%Y%m%dT%H%M%SZ\")\n    },\n    \"etag\": 1770368451507\n}\n\nurl = f'https://gateway.maton.ai/zoho-calendar/api/v1/calendars/fda9b0b4ad834257b622cb3dc3555727/events/c63e8b9fcb3e48c2a00b16729932d636@zoho.com?eventdata={urllib.parse.quote(json.dumps(eventdata))}'\nreq = urllib.request.Request(url, method='PUT')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nDelete Event\n\nDELETE /zoho-calendar/api/v1/calendars/{calendar_uid}/events/{event_uid}\n\nRequired Header:\n\netag - Current etag value of the event\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\n\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-calendar/api/v1/calendars/fda9b0b4ad834257b622cb3dc3555727/events/c63e8b9fcb3e48c2a00b16729932d636@zoho.com', method='DELETE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('etag', '1770368451507')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nResponse:\n\n{\n  \"events\": [\n    {\n      \"uid\": \"c63e8b9fcb3e48c2a00b16729932d636@zoho.com\",\n      \"estatus\": \"deleted\",\n      \"caluid\": \"fda9b0b4ad834257b622cb3dc3555727\"\n    }\n  ]\n}"
      },
      {
        "title": "Attendees",
        "body": "When creating or updating events, include attendees:\n\n{\n  \"attendees\": [\n    {\n      \"email\": \"user@example.com\",\n      \"permission\": 1,\n      \"attendance\": 1\n    }\n  ]\n}\n\nPermission levels: 0 (Guest), 1 (View), 2 (Invite), 3 (Edit)\nAttendance: 0 (Non-participant), 1 (Required), 2 (Optional)"
      },
      {
        "title": "Reminders",
        "body": "{\n  \"reminders\": [\n    {\n      \"action\": \"popup\",\n      \"minutes\": 30\n    },\n    {\n      \"action\": \"email\",\n      \"minutes\": 60\n    }\n  ]\n}\n\nActions: email, popup, notification"
      },
      {
        "title": "Recurring Events",
        "body": "Use the rrule field with iCalendar RRULE format:\n\n{\n  \"rrule\": \"FREQ=DAILY;COUNT=5;INTERVAL=1\"\n}\n\nExamples:\n\nDaily for 5 days: FREQ=DAILY;COUNT=5;INTERVAL=1\nWeekly on Mon/Tue: FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,TU;UNTIL=20250817T064600Z\nMonthly last Tuesday: FREQ=MONTHLY;INTERVAL=1;BYDAY=TU;BYSETPOS=-1;COUNT=2"
      },
      {
        "title": "JavaScript",
        "body": "const response = await fetch(\n  'https://gateway.maton.ai/zoho-calendar/api/v1/calendars',\n  {\n    headers: {\n      'Authorization': `Bearer ${process.env.MATON_API_KEY}`\n    }\n  }\n);\nconst data = await response.json();"
      },
      {
        "title": "Python",
        "body": "import os\nimport requests\n\nresponse = requests.get(\n    'https://gateway.maton.ai/zoho-calendar/api/v1/calendars',\n    headers={'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}'}\n)\ndata = response.json()"
      },
      {
        "title": "Notes",
        "body": "Event and calendar data is passed as JSON in the eventdata or calendarData query parameter\nDate/time format for events: yyyyMMdd'T'HHmmss'Z' (GMT) or yyyyMMdd for all-day events\nThe range parameter for listing events cannot exceed 31 days\nThe etag is required for update and delete operations - always get the latest etag before modifying\nFor delete operations, the etag must be passed as a header, not a query parameter\nIMPORTANT: When using curl commands, use curl -g when URLs contain brackets to disable glob parsing\nIMPORTANT: When piping curl output to jq or other commands, environment variables like $MATON_API_KEY may not expand correctly in some shell environments"
      },
      {
        "title": "Error Handling",
        "body": "StatusMeaning400Missing Zoho Calendar connection, missing required parameter, or invalid request401Invalid or missing Maton API key, or OAuth scope mismatch404Resource not found429Rate limited4xx/5xxPassthrough error from Zoho Calendar API"
      },
      {
        "title": "Common Errors",
        "body": "ErrorDescriptionETAG_MISSINGetag header required for delete operationsEXTRA_PARAM_FOUNDInvalid parameter in requestINVALID_DATAMalformed request data"
      },
      {
        "title": "Troubleshooting: API Key Issues",
        "body": "Check that the MATON_API_KEY environment variable is set:\n\necho $MATON_API_KEY\n\nVerify the API key is valid by listing connections:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Troubleshooting: Invalid App Name",
        "body": "Ensure your URL path starts with zoho-calendar. For example:\n\nCorrect: https://gateway.maton.ai/zoho-calendar/api/v1/calendars\nIncorrect: https://gateway.maton.ai/api/v1/calendars"
      },
      {
        "title": "Resources",
        "body": "Zoho Calendar API Introduction\nZoho Calendar Events API\nZoho Calendar Calendars API\nCreate Event\nGet Events List\nMaton Community\nMaton Support"
      }
    ],
    "body": "Zoho Calendar\n\nAccess the Zoho Calendar API with managed OAuth authentication. Manage calendars and events with full CRUD operations, including recurring events and attendee management.\n\nQuick Start\n# List calendars\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-calendar/api/v1/calendars')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nBase URL\nhttps://gateway.maton.ai/zoho-calendar/api/v1/{endpoint}\n\n\nThe gateway proxies requests to calendar.zoho.com/api/v1 and automatically injects your OAuth token.\n\nAuthentication\n\nAll requests require the Maton API key in the Authorization header:\n\nAuthorization: Bearer $MATON_API_KEY\n\n\nEnvironment Variable: Set your API key as MATON_API_KEY:\n\nexport MATON_API_KEY=\"YOUR_API_KEY\"\n\nGetting Your API Key\nSign in or create an account at maton.ai\nGo to maton.ai/settings\nCopy your API key\nConnection Management\n\nManage your Zoho Calendar OAuth connections at https://ctrl.maton.ai.\n\nList Connections\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections?app=zoho-calendar&status=ACTIVE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nCreate Connection\npython <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({'app': 'zoho-calendar'}).encode()\nreq = urllib.request.Request('https://ctrl.maton.ai/connections', data=data, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Content-Type', 'application/json')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nGet Connection\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\n\nResponse:\n\n{\n  \"connection\": {\n    \"connection_id\": \"21fd90f9-5935-43cd-b6c8-bde9d915ca80\",\n    \"status\": \"ACTIVE\",\n    \"creation_time\": \"2025-12-08T07:20:53.488460Z\",\n    \"last_updated_time\": \"2026-01-31T20:03:32.593153Z\",\n    \"url\": \"https://connect.maton.ai/?session_token=...\",\n    \"app\": \"zoho-calendar\",\n    \"metadata\": {}\n  }\n}\n\n\nOpen the returned url in a browser to complete OAuth authorization.\n\nDelete Connection\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections/{connection_id}', method='DELETE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nSpecifying Connection\n\nIf you have multiple Zoho Calendar connections, specify which one to use with the Maton-Connection header:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-calendar/api/v1/calendars')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Maton-Connection', '21fd90f9-5935-43cd-b6c8-bde9d915ca80')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\n\nIf omitted, the gateway uses the default (oldest) active connection.\n\nAPI Reference\nCalendars\nList Calendars\nGET /zoho-calendar/api/v1/calendars\n\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-calendar/api/v1/calendars')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\n\nResponse:\n\n{\n  \"calendars\": [\n    {\n      \"uid\": \"fda9b0b4ad834257b622cb3dc3555727\",\n      \"name\": \"My Calendar\",\n      \"color\": \"#8cbf40\",\n      \"textcolor\": \"#FFFFFF\",\n      \"timezone\": \"PST\",\n      \"isdefault\": true,\n      \"category\": \"own\",\n      \"privilege\": \"owner\"\n    }\n  ]\n}\n\nGet Calendar Details\nGET /zoho-calendar/api/v1/calendars/{calendar_uid}\n\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-calendar/api/v1/calendars/fda9b0b4ad834257b622cb3dc3555727')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nCreate Calendar\nPOST /zoho-calendar/api/v1/calendars?calendarData={json}\n\n\nRequired Fields:\n\nname - Calendar name (max 50 characters)\ncolor - Hex color code (e.g., #FF5733)\n\nOptional Fields:\n\ntextcolor - Text color hex code\ndescription - Calendar description (max 1000 characters)\ntimezone - Calendar timezone\ninclude_infreebusy - Show as Busy/Free (boolean)\npublic - Visibility level (disable, freebusy, or view)\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json, urllib.parse\n\ncalendarData = {\n    \"name\": \"Work Calendar\",\n    \"color\": \"#FF5733\",\n    \"textcolor\": \"#FFFFFF\",\n    \"description\": \"My work calendar\"\n}\n\nurl = f'https://gateway.maton.ai/zoho-calendar/api/v1/calendars?calendarData={urllib.parse.quote(json.dumps(calendarData))}'\nreq = urllib.request.Request(url, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\n\nResponse:\n\n{\n  \"calendars\": [\n    {\n      \"uid\": \"86fb9745076e4672ae4324f05e1f5393\",\n      \"name\": \"Work Calendar\",\n      \"color\": \"#FF5733\",\n      \"textcolor\": \"#FFFFFF\"\n    }\n  ]\n}\n\nDelete Calendar\nDELETE /zoho-calendar/api/v1/calendars/{calendar_uid}\n\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-calendar/api/v1/calendars/86fb9745076e4672ae4324f05e1f5393', method='DELETE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\n\nResponse:\n\n{\n  \"calendars\": [\n    {\n      \"uid\": \"86fb9745076e4672ae4324f05e1f5393\",\n      \"calstatus\": \"deleted\"\n    }\n  ]\n}\n\nEvents\nList Events\nGET /zoho-calendar/api/v1/calendars/{calendar_uid}/events?range={json}\n\n\nQuery Parameters:\n\nParameter\tType\tDescription\nrange\tJSON object\tRequired. Start and end dates in format {\"start\":\"yyyyMMdd\",\"end\":\"yyyyMMdd\"}. Max 31-day span.\nbyinstance\tboolean\tIf true, recurring event instances are returned separately\ntimezone\tstring\tTimezone for datetime values\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json, urllib.parse\nfrom datetime import datetime, timedelta\n\ntoday = datetime.now()\nend_date = today + timedelta(days=7)\nrange_param = json.dumps({\n    \"start\": today.strftime(\"%Y%m%d\"),\n    \"end\": end_date.strftime(\"%Y%m%d\")\n})\n\nurl = f'https://gateway.maton.ai/zoho-calendar/api/v1/calendars/fda9b0b4ad834257b622cb3dc3555727/events?range={urllib.parse.quote(range_param)}'\nreq = urllib.request.Request(url)\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\n\nResponse:\n\n{\n  \"events\": [\n    {\n      \"uid\": \"c63e8b9fcb3e48c2a00b16729932d636@zoho.com\",\n      \"title\": \"Team Meeting\",\n      \"dateandtime\": {\n        \"timezone\": \"America/Los_Angeles\",\n        \"start\": \"20260206T100000-0800\",\n        \"end\": \"20260206T110000-0800\"\n      },\n      \"isallday\": false,\n      \"etag\": \"1770368451507\",\n      \"organizer\": \"user@example.com\"\n    }\n  ]\n}\n\nGet Event Details\nGET /zoho-calendar/api/v1/calendars/{calendar_uid}/events/{event_uid}\n\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-calendar/api/v1/calendars/fda9b0b4ad834257b622cb3dc3555727/events/c63e8b9fcb3e48c2a00b16729932d636@zoho.com')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nCreate Event\nPOST /zoho-calendar/api/v1/calendars/{calendar_uid}/events?eventdata={json}\n\n\nRequired Fields (in eventdata):\n\ndateandtime - Object with start, end, and optionally timezone\nFormat: yyyyMMdd'T'HHmmss'Z' (GMT) for timed events\nFormat: yyyyMMdd for all-day events\n\nOptional Fields:\n\ntitle - Event name\ndescription - Event details (max 10,000 characters)\nlocation - Event location (max 255 characters)\nisallday - Boolean for all-day events\nisprivate - Boolean to hide details from non-delegates\ncolor - Hex color code\nattendees - Array of attendee objects\nreminders - Array of reminder objects\nrrule - Recurrence rule string (e.g., FREQ=DAILY;COUNT=5)\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json, urllib.parse\nfrom datetime import datetime, timedelta\n\nstart_time = datetime.utcnow() + timedelta(hours=1)\nend_time = start_time + timedelta(hours=1)\n\neventdata = {\n    \"title\": \"Team Meeting\",\n    \"dateandtime\": {\n        \"timezone\": \"America/Los_Angeles\",\n        \"start\": start_time.strftime(\"%Y%m%dT%H%M%SZ\"),\n        \"end\": end_time.strftime(\"%Y%m%dT%H%M%SZ\")\n    },\n    \"description\": \"Weekly team sync\",\n    \"location\": \"Conference Room A\"\n}\n\nurl = f'https://gateway.maton.ai/zoho-calendar/api/v1/calendars/fda9b0b4ad834257b622cb3dc3555727/events?eventdata={urllib.parse.quote(json.dumps(eventdata))}'\nreq = urllib.request.Request(url, method='POST')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\n\nResponse:\n\n{\n  \"events\": [\n    {\n      \"uid\": \"c63e8b9fcb3e48c2a00b16729932d636@zoho.com\",\n      \"title\": \"Team Meeting\",\n      \"dateandtime\": {\n        \"timezone\": \"America/Los_Angeles\",\n        \"start\": \"20260206T100000-0800\",\n        \"end\": \"20260206T110000-0800\"\n      },\n      \"etag\": \"1770368451507\",\n      \"estatus\": \"added\"\n    }\n  ]\n}\n\nUpdate Event\nPUT /zoho-calendar/api/v1/calendars/{calendar_uid}/events/{event_uid}?eventdata={json}\n\n\nRequired Fields:\n\ndateandtime - Start and end times\netag - Current etag value (from Get Event Details)\n\nOptional Fields: Same as Create Event\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json, urllib.parse\nfrom datetime import datetime, timedelta\n\nstart_time = datetime.utcnow() + timedelta(hours=2)\nend_time = start_time + timedelta(hours=1)\n\neventdata = {\n    \"title\": \"Updated Team Meeting\",\n    \"dateandtime\": {\n        \"timezone\": \"America/Los_Angeles\",\n        \"start\": start_time.strftime(\"%Y%m%dT%H%M%SZ\"),\n        \"end\": end_time.strftime(\"%Y%m%dT%H%M%SZ\")\n    },\n    \"etag\": 1770368451507\n}\n\nurl = f'https://gateway.maton.ai/zoho-calendar/api/v1/calendars/fda9b0b4ad834257b622cb3dc3555727/events/c63e8b9fcb3e48c2a00b16729932d636@zoho.com?eventdata={urllib.parse.quote(json.dumps(eventdata))}'\nreq = urllib.request.Request(url, method='PUT')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nDelete Event\nDELETE /zoho-calendar/api/v1/calendars/{calendar_uid}/events/{event_uid}\n\n\nRequired Header:\n\netag - Current etag value of the event\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\n\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-calendar/api/v1/calendars/fda9b0b4ad834257b622cb3dc3555727/events/c63e8b9fcb3e48c2a00b16729932d636@zoho.com', method='DELETE')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('etag', '1770368451507')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\n\nResponse:\n\n{\n  \"events\": [\n    {\n      \"uid\": \"c63e8b9fcb3e48c2a00b16729932d636@zoho.com\",\n      \"estatus\": \"deleted\",\n      \"caluid\": \"fda9b0b4ad834257b622cb3dc3555727\"\n    }\n  ]\n}\n\nAttendees\n\nWhen creating or updating events, include attendees:\n\n{\n  \"attendees\": [\n    {\n      \"email\": \"user@example.com\",\n      \"permission\": 1,\n      \"attendance\": 1\n    }\n  ]\n}\n\n\nPermission levels: 0 (Guest), 1 (View), 2 (Invite), 3 (Edit) Attendance: 0 (Non-participant), 1 (Required), 2 (Optional)\n\nReminders\n{\n  \"reminders\": [\n    {\n      \"action\": \"popup\",\n      \"minutes\": 30\n    },\n    {\n      \"action\": \"email\",\n      \"minutes\": 60\n    }\n  ]\n}\n\n\nActions: email, popup, notification\n\nRecurring Events\n\nUse the rrule field with iCalendar RRULE format:\n\n{\n  \"rrule\": \"FREQ=DAILY;COUNT=5;INTERVAL=1\"\n}\n\n\nExamples:\n\nDaily for 5 days: FREQ=DAILY;COUNT=5;INTERVAL=1\nWeekly on Mon/Tue: FREQ=WEEKLY;INTERVAL=1;BYDAY=MO,TU;UNTIL=20250817T064600Z\nMonthly last Tuesday: FREQ=MONTHLY;INTERVAL=1;BYDAY=TU;BYSETPOS=-1;COUNT=2\nCode Examples\nJavaScript\nconst response = await fetch(\n  'https://gateway.maton.ai/zoho-calendar/api/v1/calendars',\n  {\n    headers: {\n      'Authorization': `Bearer ${process.env.MATON_API_KEY}`\n    }\n  }\n);\nconst data = await response.json();\n\nPython\nimport os\nimport requests\n\nresponse = requests.get(\n    'https://gateway.maton.ai/zoho-calendar/api/v1/calendars',\n    headers={'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}'}\n)\ndata = response.json()\n\nNotes\nEvent and calendar data is passed as JSON in the eventdata or calendarData query parameter\nDate/time format for events: yyyyMMdd'T'HHmmss'Z' (GMT) or yyyyMMdd for all-day events\nThe range parameter for listing events cannot exceed 31 days\nThe etag is required for update and delete operations - always get the latest etag before modifying\nFor delete operations, the etag must be passed as a header, not a query parameter\nIMPORTANT: When using curl commands, use curl -g when URLs contain brackets to disable glob parsing\nIMPORTANT: When piping curl output to jq or other commands, environment variables like $MATON_API_KEY may not expand correctly in some shell environments\nError Handling\nStatus\tMeaning\n400\tMissing Zoho Calendar connection, missing required parameter, or invalid request\n401\tInvalid or missing Maton API key, or OAuth scope mismatch\n404\tResource not found\n429\tRate limited\n4xx/5xx\tPassthrough error from Zoho Calendar API\nCommon Errors\nError\tDescription\nETAG_MISSING\tetag header required for delete operations\nEXTRA_PARAM_FOUND\tInvalid parameter in request\nINVALID_DATA\tMalformed request data\nTroubleshooting: API Key Issues\nCheck that the MATON_API_KEY environment variable is set:\necho $MATON_API_KEY\n\nVerify the API key is valid by listing connections:\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://ctrl.maton.ai/connections')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nTroubleshooting: Invalid App Name\nEnsure your URL path starts with zoho-calendar. For example:\nCorrect: https://gateway.maton.ai/zoho-calendar/api/v1/calendars\nIncorrect: https://gateway.maton.ai/api/v1/calendars\nResources\nZoho Calendar API Introduction\nZoho Calendar Events API\nZoho Calendar Calendars API\nCreate Event\nGet Events List\nMaton Community\nMaton Support"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/byungkyu/zoho-calendar",
    "publisherUrl": "https://clawhub.ai/byungkyu/zoho-calendar",
    "owner": "byungkyu",
    "version": "1.0.3",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/zoho-calendar",
    "downloadUrl": "https://openagent3.xyz/downloads/zoho-calendar",
    "agentUrl": "https://openagent3.xyz/skills/zoho-calendar/agent",
    "manifestUrl": "https://openagent3.xyz/skills/zoho-calendar/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/zoho-calendar/agent.md"
  }
}