{
  "schemaVersion": "1.0",
  "item": {
    "slug": "zoho-projects",
    "name": "Zoho Projects",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/byungkyu/zoho-projects",
    "canonicalUrl": "https://clawhub.ai/byungkyu/zoho-projects",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/zoho-projects",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=zoho-projects",
    "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-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-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-projects"
    },
    "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-projects",
    "agentPageUrl": "https://openagent3.xyz/skills/zoho-projects/agent",
    "manifestUrl": "https://openagent3.xyz/skills/zoho-projects/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/zoho-projects/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 Projects",
        "body": "Access the Zoho Projects API with managed OAuth authentication. Manage projects, tasks, milestones, tasklists, and team collaboration."
      },
      {
        "title": "Quick Start",
        "body": "# List all portals\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-projects/restapi/portals/')\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-projects/{native-api-path}\n\nReplace {native-api-path} with the actual Zoho Projects API endpoint path. The gateway proxies requests to projectsapi.zoho.com 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 Projects 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-projects&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-projects'}).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\": \"522c11a9-b879-4504-b267-355e3dbac99f\",\n    \"status\": \"ACTIVE\",\n    \"creation_time\": \"2026-02-28T00:12:25.223434Z\",\n    \"last_updated_time\": \"2026-02-28T00:16:32.882675Z\",\n    \"url\": \"https://connect.maton.ai/?session_token=...\",\n    \"app\": \"zoho-projects\",\n    \"metadata\": {},\n    \"method\": \"OAUTH2\"\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 Projects 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-projects/restapi/portals/')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Maton-Connection', '522c11a9-b879-4504-b267-355e3dbac99f')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nIf omitted, the gateway uses the default (oldest) active connection."
      },
      {
        "title": "Portals",
        "body": "List Portals\n\nGET /zoho-projects/restapi/portals/\n\nResponse:\n\n{\n  \"portals\": [\n    {\n      \"id\": 916020774,\n      \"id_string\": \"916020774\",\n      \"name\": \"nunchidotapp\",\n      \"plan\": \"Ultimate\",\n      \"role\": \"admin\",\n      \"project_count\": {\"active\": 1}\n    }\n  ]\n}\n\nGet Portal Details\n\nGET /zoho-projects/restapi/portal/{portal_id}/"
      },
      {
        "title": "Projects",
        "body": "List Projects\n\nGET /zoho-projects/restapi/portal/{portal_id}/projects/\n\nQuery parameters: index, range, status, sort_column, sort_order\n\nResponse:\n\n{\n  \"projects\": [\n    {\n      \"id\": 2644874000000089119,\n      \"name\": \"My Project\",\n      \"status\": \"active\",\n      \"owner_name\": \"Byungkyu Park\",\n      \"task_count\": {\"open\": 3, \"closed\": 0},\n      \"project_percent\": \"0\"\n    }\n  ]\n}\n\nGet Project Details\n\nGET /zoho-projects/restapi/portal/{portal_id}/projects/{project_id}/\n\nCreate Project\n\nPOST /zoho-projects/restapi/portal/{portal_id}/projects/\nContent-Type: application/x-www-form-urlencoded\n\nname=New+Project&owner={user_id}&description=Project+description\n\nRequired: name\nOptional: owner, description, start_date, end_date, template_id, group_id\n\nResponse:\n\n{\n  \"projects\": [\n    {\n      \"id\": 2644874000000096003,\n      \"name\": \"New Project\",\n      \"status\": \"active\"\n    }\n  ]\n}\n\nUpdate Project\n\nPOST /zoho-projects/restapi/portal/{portal_id}/projects/{project_id}/\nContent-Type: application/x-www-form-urlencoded\n\nname=Updated+Name&status=active\n\nDelete Project\n\nDELETE /zoho-projects/restapi/portal/{portal_id}/projects/{project_id}/\n\nResponse:\n\n{\"response\": \"Project Trashed successfully\"}"
      },
      {
        "title": "Tasks",
        "body": "List Tasks\n\nGET /zoho-projects/restapi/portal/{portal_id}/projects/{project_id}/tasks/\n\nQuery parameters: index, range, owner, status, priority, tasklist_id, sort_column\n\nResponse:\n\n{\n  \"tasks\": [\n    {\n      \"id\": 2644874000000089255,\n      \"name\": \"Task 3\",\n      \"status\": {\"name\": \"Open\", \"type\": \"open\"},\n      \"priority\": \"None\",\n      \"completed\": false,\n      \"tasklist\": {\"name\": \"General\", \"id\": \"2644874000000089245\"}\n    }\n  ]\n}\n\nGet Task Details\n\nGET /zoho-projects/restapi/portal/{portal_id}/projects/{project_id}/tasks/{task_id}/\n\nGet My Tasks\n\nGET /zoho-projects/restapi/portal/{portal_id}/mytasks/\n\nQuery parameters: index, range, owner, status, priority, projects_ids\n\nCreate Task\n\nPOST /zoho-projects/restapi/portal/{portal_id}/projects/{project_id}/tasks/\nContent-Type: application/x-www-form-urlencoded\n\nname=New+Task&tasklist_id={tasklist_id}&priority=High\n\nRequired: name\nOptional: person_responsible, tasklist_id, start_date, end_date, priority, description\n\nResponse:\n\n{\n  \"tasks\": [\n    {\n      \"id\": 2644874000000094001,\n      \"key\": \"EZ1-T4\",\n      \"name\": \"New Task\",\n      \"status\": {\"name\": \"Open\", \"type\": \"open\"}\n    }\n  ]\n}\n\nUpdate Task\n\nPOST /zoho-projects/restapi/portal/{portal_id}/projects/{project_id}/tasks/{task_id}/\nContent-Type: application/x-www-form-urlencoded\n\nname=Updated+Name&priority=High&percent_complete=50\n\nDelete Task\n\nDELETE /zoho-projects/restapi/portal/{portal_id}/projects/{project_id}/tasks/{task_id}/\n\nResponse:\n\n{\"response\": \"Task Trashed successfully\"}"
      },
      {
        "title": "Task Comments",
        "body": "List Comments\n\nGET /zoho-projects/restapi/portal/{portal_id}/projects/{project_id}/tasks/{task_id}/comments/\n\nAdd Comment\n\nPOST /zoho-projects/restapi/portal/{portal_id}/projects/{project_id}/tasks/{task_id}/comments/\nContent-Type: application/x-www-form-urlencoded\n\ncontent=This+is+a+comment\n\nResponse:\n\n{\n  \"comments\": [\n    {\n      \"id\": 2644874000000094015,\n      \"content\": \"This is a comment\",\n      \"added_person\": \"Byungkyu Park\"\n    }\n  ]\n}\n\nUpdate Comment\n\nPOST /zoho-projects/restapi/portal/{portal_id}/projects/{project_id}/tasks/{task_id}/comments/{comment_id}/\nContent-Type: application/x-www-form-urlencoded\n\ncontent=Updated+comment\n\nDelete Comment\n\nDELETE /zoho-projects/restapi/portal/{portal_id}/projects/{project_id}/tasks/{task_id}/comments/{comment_id}/"
      },
      {
        "title": "Tasklists",
        "body": "List Tasklists\n\nGET /zoho-projects/restapi/portal/{portal_id}/projects/{project_id}/tasklists/\n\nQuery parameters: index, range, flag, milestone_id, sort_column\n\nResponse:\n\n{\n  \"tasklists\": [\n    {\n      \"id\": 2644874000000089245,\n      \"name\": \"General\",\n      \"flag\": \"internal\",\n      \"is_default\": true,\n      \"task_count\": {\"open\": 3}\n    }\n  ]\n}\n\nCreate Tasklist\n\nPOST /zoho-projects/restapi/portal/{portal_id}/projects/{project_id}/tasklists/\nContent-Type: application/x-www-form-urlencoded\n\nname=New+Tasklist&flag=internal\n\nRequired: name\nOptional: milestone_id, flag\n\nUpdate Tasklist\n\nPOST /zoho-projects/restapi/portal/{portal_id}/projects/{project_id}/tasklists/{tasklist_id}/\nContent-Type: application/x-www-form-urlencoded\n\nname=Updated+Name&milestone_id={milestone_id}\n\nDelete Tasklist\n\nDELETE /zoho-projects/restapi/portal/{portal_id}/projects/{project_id}/tasklists/{tasklist_id}/\n\nResponse:\n\n{\"response\": \"Tasklist Trashed successfully\"}"
      },
      {
        "title": "Milestones",
        "body": "List Milestones\n\nGET /zoho-projects/restapi/portal/{portal_id}/projects/{project_id}/milestones/\n\nQuery parameters: index, range, status, flag, sort_column\n\nNote: Returns 204 No Content if no milestones exist.\n\nCreate Milestone\n\nPOST /zoho-projects/restapi/portal/{portal_id}/projects/{project_id}/milestones/\nContent-Type: application/x-www-form-urlencoded\n\nname=Phase+1&start_date=03-01-2026&end_date=03-15-2026&owner={user_id}&flag=internal\n\nRequired: name, start_date, end_date, owner, flag\n\nResponse:\n\n{\n  \"milestones\": [\n    {\n      \"id\": 2644874000000096133,\n      \"name\": \"Phase 1\",\n      \"start_date\": \"03-01-2026\",\n      \"end_date\": \"03-15-2026\",\n      \"status\": \"notcompleted\"\n    }\n  ]\n}\n\nUpdate Milestone\n\nPOST /zoho-projects/restapi/portal/{portal_id}/projects/{project_id}/milestones/{milestone_id}/\nContent-Type: application/x-www-form-urlencoded\n\nname=Updated+Phase&start_date=03-01-2026&end_date=03-20-2026&owner={user_id}&flag=internal\n\nUpdate Milestone Status\n\nPOST /zoho-projects/restapi/portal/{portal_id}/projects/{project_id}/milestones/{milestone_id}/status/\nContent-Type: application/x-www-form-urlencoded\n\nstatus=2\n\nStatus values: 1 = not completed, 2 = completed\n\nDelete Milestone\n\nDELETE /zoho-projects/restapi/portal/{portal_id}/projects/{project_id}/milestones/{milestone_id}/\n\nResponse:\n\n{\"response\": \"Milestone Trashed successfully\"}"
      },
      {
        "title": "Users",
        "body": "List Users\n\nGET /zoho-projects/restapi/portal/{portal_id}/users/\n\nResponse:\n\n{\n  \"users\": [\n    {\n      \"id\": \"801698114\",\n      \"zpuid\": \"2644874000000085003\",\n      \"name\": \"Byungkyu Park\",\n      \"email\": \"byungkyu@example.com\",\n      \"role_name\": \"Administrator\",\n      \"active\": true\n    }\n  ]\n}"
      },
      {
        "title": "Project Groups",
        "body": "List Groups\n\nGET /zoho-projects/restapi/portal/{portal_id}/projects/groups\n\nResponse:\n\n{\n  \"groups\": [\n    {\n      \"id\": \"2644874000000018001\",\n      \"name\": \"Ungrouped Projects\",\n      \"is_default\": \"true\"\n    }\n  ]\n}\n\nCreate Group\n\nPOST /zoho-projects/restapi/portal/{portal_id}/projectgroups\nContent-Type: application/x-www-form-urlencoded\n\nname=New+Group"
      },
      {
        "title": "Pagination",
        "body": "Use index and range parameters for pagination:\n\nGET /zoho-projects/restapi/portal/{portal_id}/projects/{project_id}/tasks/?index=1&range=50\n\nindex: Starting record number (1-based)\nrange: Number of records to return"
      },
      {
        "title": "JavaScript",
        "body": "// List tasks in a project\nconst response = await fetch(\n  'https://gateway.maton.ai/zoho-projects/restapi/portal/916020774/projects/2644874000000089119/tasks/',\n  {\n    headers: {\n      'Authorization': `Bearer ${process.env.MATON_API_KEY}`\n    }\n  }\n);\nconst data = await response.json();\nconsole.log(data.tasks);"
      },
      {
        "title": "Python",
        "body": "import os\nimport requests\n\n# Create a task\nresponse = requests.post(\n    'https://gateway.maton.ai/zoho-projects/restapi/portal/916020774/projects/2644874000000089119/tasks/',\n    headers={\n        'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}',\n        'Content-Type': 'application/x-www-form-urlencoded'\n    },\n    data={'name': 'New Task', 'priority': 'High'}\n)\ntask = response.json()\nprint(task['tasks'][0]['id'])"
      },
      {
        "title": "Notes",
        "body": "All POST requests for create/update use application/x-www-form-urlencoded content type, not JSON\nPortal ID is required for most endpoints and can be obtained from GET /restapi/portals/\nDate format is MM-dd-yyyy (e.g., 03-01-2026)\nMilestone creation requires all fields: name, start_date, end_date, owner, flag\nEmpty list responses return HTTP 204 No Content\nDeleted items are moved to trash, not permanently deleted"
      },
      {
        "title": "Error Handling",
        "body": "StatusMeaning204No content (empty list)400Missing/invalid input parameter401Invalid or missing Maton API key404Resource not found429Rate limited (100 requests per 2 minutes)4xx/5xxPassthrough error from Zoho Projects API\n\nCommon error codes:\n\n6831: Input Parameter Missing\n6832: Input Parameter Does not Match the Pattern Specified"
      },
      {
        "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-projects. For example:\n\nCorrect: https://gateway.maton.ai/zoho-projects/restapi/portals/\nIncorrect: https://gateway.maton.ai/restapi/portals/"
      },
      {
        "title": "Resources",
        "body": "Zoho Projects API Documentation\nProjects API\nTasks API\nMilestones API\nMaton Community\nMaton Support"
      }
    ],
    "body": "Zoho Projects\n\nAccess the Zoho Projects API with managed OAuth authentication. Manage projects, tasks, milestones, tasklists, and team collaboration.\n\nQuick Start\n# List all portals\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-projects/restapi/portals/')\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-projects/{native-api-path}\n\n\nReplace {native-api-path} with the actual Zoho Projects API endpoint path. The gateway proxies requests to projectsapi.zoho.com 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 Projects 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-projects&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-projects'}).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\": \"522c11a9-b879-4504-b267-355e3dbac99f\",\n    \"status\": \"ACTIVE\",\n    \"creation_time\": \"2026-02-28T00:12:25.223434Z\",\n    \"last_updated_time\": \"2026-02-28T00:16:32.882675Z\",\n    \"url\": \"https://connect.maton.ai/?session_token=...\",\n    \"app\": \"zoho-projects\",\n    \"metadata\": {},\n    \"method\": \"OAUTH2\"\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 Projects 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-projects/restapi/portals/')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Maton-Connection', '522c11a9-b879-4504-b267-355e3dbac99f')\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\nPortals\nList Portals\nGET /zoho-projects/restapi/portals/\n\n\nResponse:\n\n{\n  \"portals\": [\n    {\n      \"id\": 916020774,\n      \"id_string\": \"916020774\",\n      \"name\": \"nunchidotapp\",\n      \"plan\": \"Ultimate\",\n      \"role\": \"admin\",\n      \"project_count\": {\"active\": 1}\n    }\n  ]\n}\n\nGet Portal Details\nGET /zoho-projects/restapi/portal/{portal_id}/\n\nProjects\nList Projects\nGET /zoho-projects/restapi/portal/{portal_id}/projects/\n\n\nQuery parameters: index, range, status, sort_column, sort_order\n\nResponse:\n\n{\n  \"projects\": [\n    {\n      \"id\": 2644874000000089119,\n      \"name\": \"My Project\",\n      \"status\": \"active\",\n      \"owner_name\": \"Byungkyu Park\",\n      \"task_count\": {\"open\": 3, \"closed\": 0},\n      \"project_percent\": \"0\"\n    }\n  ]\n}\n\nGet Project Details\nGET /zoho-projects/restapi/portal/{portal_id}/projects/{project_id}/\n\nCreate Project\nPOST /zoho-projects/restapi/portal/{portal_id}/projects/\nContent-Type: application/x-www-form-urlencoded\n\nname=New+Project&owner={user_id}&description=Project+description\n\n\nRequired: name Optional: owner, description, start_date, end_date, template_id, group_id\n\nResponse:\n\n{\n  \"projects\": [\n    {\n      \"id\": 2644874000000096003,\n      \"name\": \"New Project\",\n      \"status\": \"active\"\n    }\n  ]\n}\n\nUpdate Project\nPOST /zoho-projects/restapi/portal/{portal_id}/projects/{project_id}/\nContent-Type: application/x-www-form-urlencoded\n\nname=Updated+Name&status=active\n\nDelete Project\nDELETE /zoho-projects/restapi/portal/{portal_id}/projects/{project_id}/\n\n\nResponse:\n\n{\"response\": \"Project Trashed successfully\"}\n\nTasks\nList Tasks\nGET /zoho-projects/restapi/portal/{portal_id}/projects/{project_id}/tasks/\n\n\nQuery parameters: index, range, owner, status, priority, tasklist_id, sort_column\n\nResponse:\n\n{\n  \"tasks\": [\n    {\n      \"id\": 2644874000000089255,\n      \"name\": \"Task 3\",\n      \"status\": {\"name\": \"Open\", \"type\": \"open\"},\n      \"priority\": \"None\",\n      \"completed\": false,\n      \"tasklist\": {\"name\": \"General\", \"id\": \"2644874000000089245\"}\n    }\n  ]\n}\n\nGet Task Details\nGET /zoho-projects/restapi/portal/{portal_id}/projects/{project_id}/tasks/{task_id}/\n\nGet My Tasks\nGET /zoho-projects/restapi/portal/{portal_id}/mytasks/\n\n\nQuery parameters: index, range, owner, status, priority, projects_ids\n\nCreate Task\nPOST /zoho-projects/restapi/portal/{portal_id}/projects/{project_id}/tasks/\nContent-Type: application/x-www-form-urlencoded\n\nname=New+Task&tasklist_id={tasklist_id}&priority=High\n\n\nRequired: name Optional: person_responsible, tasklist_id, start_date, end_date, priority, description\n\nResponse:\n\n{\n  \"tasks\": [\n    {\n      \"id\": 2644874000000094001,\n      \"key\": \"EZ1-T4\",\n      \"name\": \"New Task\",\n      \"status\": {\"name\": \"Open\", \"type\": \"open\"}\n    }\n  ]\n}\n\nUpdate Task\nPOST /zoho-projects/restapi/portal/{portal_id}/projects/{project_id}/tasks/{task_id}/\nContent-Type: application/x-www-form-urlencoded\n\nname=Updated+Name&priority=High&percent_complete=50\n\nDelete Task\nDELETE /zoho-projects/restapi/portal/{portal_id}/projects/{project_id}/tasks/{task_id}/\n\n\nResponse:\n\n{\"response\": \"Task Trashed successfully\"}\n\nTask Comments\nList Comments\nGET /zoho-projects/restapi/portal/{portal_id}/projects/{project_id}/tasks/{task_id}/comments/\n\nAdd Comment\nPOST /zoho-projects/restapi/portal/{portal_id}/projects/{project_id}/tasks/{task_id}/comments/\nContent-Type: application/x-www-form-urlencoded\n\ncontent=This+is+a+comment\n\n\nResponse:\n\n{\n  \"comments\": [\n    {\n      \"id\": 2644874000000094015,\n      \"content\": \"This is a comment\",\n      \"added_person\": \"Byungkyu Park\"\n    }\n  ]\n}\n\nUpdate Comment\nPOST /zoho-projects/restapi/portal/{portal_id}/projects/{project_id}/tasks/{task_id}/comments/{comment_id}/\nContent-Type: application/x-www-form-urlencoded\n\ncontent=Updated+comment\n\nDelete Comment\nDELETE /zoho-projects/restapi/portal/{portal_id}/projects/{project_id}/tasks/{task_id}/comments/{comment_id}/\n\nTasklists\nList Tasklists\nGET /zoho-projects/restapi/portal/{portal_id}/projects/{project_id}/tasklists/\n\n\nQuery parameters: index, range, flag, milestone_id, sort_column\n\nResponse:\n\n{\n  \"tasklists\": [\n    {\n      \"id\": 2644874000000089245,\n      \"name\": \"General\",\n      \"flag\": \"internal\",\n      \"is_default\": true,\n      \"task_count\": {\"open\": 3}\n    }\n  ]\n}\n\nCreate Tasklist\nPOST /zoho-projects/restapi/portal/{portal_id}/projects/{project_id}/tasklists/\nContent-Type: application/x-www-form-urlencoded\n\nname=New+Tasklist&flag=internal\n\n\nRequired: name Optional: milestone_id, flag\n\nUpdate Tasklist\nPOST /zoho-projects/restapi/portal/{portal_id}/projects/{project_id}/tasklists/{tasklist_id}/\nContent-Type: application/x-www-form-urlencoded\n\nname=Updated+Name&milestone_id={milestone_id}\n\nDelete Tasklist\nDELETE /zoho-projects/restapi/portal/{portal_id}/projects/{project_id}/tasklists/{tasklist_id}/\n\n\nResponse:\n\n{\"response\": \"Tasklist Trashed successfully\"}\n\nMilestones\nList Milestones\nGET /zoho-projects/restapi/portal/{portal_id}/projects/{project_id}/milestones/\n\n\nQuery parameters: index, range, status, flag, sort_column\n\nNote: Returns 204 No Content if no milestones exist.\n\nCreate Milestone\nPOST /zoho-projects/restapi/portal/{portal_id}/projects/{project_id}/milestones/\nContent-Type: application/x-www-form-urlencoded\n\nname=Phase+1&start_date=03-01-2026&end_date=03-15-2026&owner={user_id}&flag=internal\n\n\nRequired: name, start_date, end_date, owner, flag\n\nResponse:\n\n{\n  \"milestones\": [\n    {\n      \"id\": 2644874000000096133,\n      \"name\": \"Phase 1\",\n      \"start_date\": \"03-01-2026\",\n      \"end_date\": \"03-15-2026\",\n      \"status\": \"notcompleted\"\n    }\n  ]\n}\n\nUpdate Milestone\nPOST /zoho-projects/restapi/portal/{portal_id}/projects/{project_id}/milestones/{milestone_id}/\nContent-Type: application/x-www-form-urlencoded\n\nname=Updated+Phase&start_date=03-01-2026&end_date=03-20-2026&owner={user_id}&flag=internal\n\nUpdate Milestone Status\nPOST /zoho-projects/restapi/portal/{portal_id}/projects/{project_id}/milestones/{milestone_id}/status/\nContent-Type: application/x-www-form-urlencoded\n\nstatus=2\n\n\nStatus values: 1 = not completed, 2 = completed\n\nDelete Milestone\nDELETE /zoho-projects/restapi/portal/{portal_id}/projects/{project_id}/milestones/{milestone_id}/\n\n\nResponse:\n\n{\"response\": \"Milestone Trashed successfully\"}\n\nUsers\nList Users\nGET /zoho-projects/restapi/portal/{portal_id}/users/\n\n\nResponse:\n\n{\n  \"users\": [\n    {\n      \"id\": \"801698114\",\n      \"zpuid\": \"2644874000000085003\",\n      \"name\": \"Byungkyu Park\",\n      \"email\": \"byungkyu@example.com\",\n      \"role_name\": \"Administrator\",\n      \"active\": true\n    }\n  ]\n}\n\nProject Groups\nList Groups\nGET /zoho-projects/restapi/portal/{portal_id}/projects/groups\n\n\nResponse:\n\n{\n  \"groups\": [\n    {\n      \"id\": \"2644874000000018001\",\n      \"name\": \"Ungrouped Projects\",\n      \"is_default\": \"true\"\n    }\n  ]\n}\n\nCreate Group\nPOST /zoho-projects/restapi/portal/{portal_id}/projectgroups\nContent-Type: application/x-www-form-urlencoded\n\nname=New+Group\n\nPagination\n\nUse index and range parameters for pagination:\n\nGET /zoho-projects/restapi/portal/{portal_id}/projects/{project_id}/tasks/?index=1&range=50\n\nindex: Starting record number (1-based)\nrange: Number of records to return\nCode Examples\nJavaScript\n// List tasks in a project\nconst response = await fetch(\n  'https://gateway.maton.ai/zoho-projects/restapi/portal/916020774/projects/2644874000000089119/tasks/',\n  {\n    headers: {\n      'Authorization': `Bearer ${process.env.MATON_API_KEY}`\n    }\n  }\n);\nconst data = await response.json();\nconsole.log(data.tasks);\n\nPython\nimport os\nimport requests\n\n# Create a task\nresponse = requests.post(\n    'https://gateway.maton.ai/zoho-projects/restapi/portal/916020774/projects/2644874000000089119/tasks/',\n    headers={\n        'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}',\n        'Content-Type': 'application/x-www-form-urlencoded'\n    },\n    data={'name': 'New Task', 'priority': 'High'}\n)\ntask = response.json()\nprint(task['tasks'][0]['id'])\n\nNotes\nAll POST requests for create/update use application/x-www-form-urlencoded content type, not JSON\nPortal ID is required for most endpoints and can be obtained from GET /restapi/portals/\nDate format is MM-dd-yyyy (e.g., 03-01-2026)\nMilestone creation requires all fields: name, start_date, end_date, owner, flag\nEmpty list responses return HTTP 204 No Content\nDeleted items are moved to trash, not permanently deleted\nError Handling\nStatus\tMeaning\n204\tNo content (empty list)\n400\tMissing/invalid input parameter\n401\tInvalid or missing Maton API key\n404\tResource not found\n429\tRate limited (100 requests per 2 minutes)\n4xx/5xx\tPassthrough error from Zoho Projects API\n\nCommon error codes:\n\n6831: Input Parameter Missing\n6832: Input Parameter Does not Match the Pattern Specified\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\n\nEnsure your URL path starts with zoho-projects. For example:\n\nCorrect: https://gateway.maton.ai/zoho-projects/restapi/portals/\nIncorrect: https://gateway.maton.ai/restapi/portals/\nResources\nZoho Projects API Documentation\nProjects API\nTasks API\nMilestones API\nMaton Community\nMaton Support"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/byungkyu/zoho-projects",
    "publisherUrl": "https://clawhub.ai/byungkyu/zoho-projects",
    "owner": "byungkyu",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/zoho-projects",
    "downloadUrl": "https://openagent3.xyz/downloads/zoho-projects",
    "agentUrl": "https://openagent3.xyz/skills/zoho-projects/agent",
    "manifestUrl": "https://openagent3.xyz/skills/zoho-projects/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/zoho-projects/agent.md"
  }
}