{
  "schemaVersion": "1.0",
  "item": {
    "slug": "zoho-recruit",
    "name": "Zoho Recruit",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/byungkyu/zoho-recruit",
    "canonicalUrl": "https://clawhub.ai/byungkyu/zoho-recruit",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/zoho-recruit",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=zoho-recruit",
    "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-recruit"
    },
    "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-recruit",
    "agentPageUrl": "https://openagent3.xyz/skills/zoho-recruit/agent",
    "manifestUrl": "https://openagent3.xyz/skills/zoho-recruit/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/zoho-recruit/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 Recruit",
        "body": "Access the Zoho Recruit API with managed OAuth authentication. Manage candidates, job openings, interviews, applications, and recruitment workflows with full CRUD operations."
      },
      {
        "title": "Quick Start",
        "body": "# List all candidates\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-recruit/recruit/v2/Candidates?per_page=10')\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-recruit/{native-api-path}\n\nReplace {native-api-path} with the actual Zoho Recruit API endpoint path. The gateway proxies requests to recruit.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 Recruit 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-recruit&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-recruit'}).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\": \"0c9fa9b1-80b6-4caa-afc2-8629fe4d9661\",\n    \"status\": \"ACTIVE\",\n    \"creation_time\": \"2026-02-06T07:48:59.474215Z\",\n    \"last_updated_time\": \"2026-02-06T07:57:52.950167Z\",\n    \"url\": \"https://connect.maton.ai/?session_token=...\",\n    \"app\": \"zoho-recruit\",\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 Recruit 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-recruit/recruit/v2/Candidates')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Maton-Connection', '0c9fa9b1-80b6-4caa-afc2-8629fe4d9661')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nIf omitted, the gateway uses the default (oldest) active connection."
      },
      {
        "title": "Modules",
        "body": "List All Modules\n\nGet a list of all available modules in your Zoho Recruit account.\n\nGET /zoho-recruit/recruit/v2/settings/modules\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-recruit/recruit/v2/settings/modules')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Candidates",
        "body": "List Candidates\n\nGET /zoho-recruit/recruit/v2/Candidates\n\nQuery Parameters:\n\nParameterTypeDefaultDescriptionfieldsstring-Comma-separated field API namessort_orderstring-asc or descsort_bystring-Field API name to sort byconvertedstring-true, false, or bothapprovedstring-true, false, or bothpageinteger1Page numberper_pageinteger200Records per page (max 200)\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-recruit/recruit/v2/Candidates?per_page=10')\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  \"data\": [\n    {\n      \"id\": \"846336000000552208\",\n      \"First_Name\": \"Christina\",\n      \"Last_Name\": \"Palaskas\",\n      \"Email\": \"c.palaskas@example.com\",\n      \"Candidate_Status\": \"Converted - Employee\",\n      \"Current_Employer\": \"Chandlers\",\n      \"Current_Job_Title\": \"Technical Consultant\",\n      \"Experience_in_Years\": 3,\n      \"Skill_Set\": \"Communication, Presentation, Customer service\",\n      \"Candidate_Owner\": {\n        \"name\": \"Byungkyu Park\",\n        \"id\": \"846336000000549541\"\n      }\n    }\n  ],\n  \"info\": {\n    \"per_page\": 10,\n    \"count\": 1,\n    \"page\": 1,\n    \"more_records\": false\n  }\n}\n\nGet Candidate by ID\n\nGET /zoho-recruit/recruit/v2/Candidates/{record_id}\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-recruit/recruit/v2/Candidates/846336000000552208')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nSearch Candidates\n\nGET /zoho-recruit/recruit/v2/Candidates/search?criteria={criteria}\n\nQuery Parameters:\n\nParameterTypeDescriptioncriteriastringSearch criteria (e.g., (Last_Name:contains:Smith))emailstringSearch by emailphonestringSearch by phonewordstringGlobal word searchpageintegerPage numberper_pageintegerRecords per page\n\nSearch Operators:\n\nText: equals, not_equal, starts_with, ends_with, contains, not_contains, in\nDate/Number: equals, not_equal, greater_than, less_than, greater_equal, less_equal, between\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nimport urllib.parse\ncriteria = urllib.parse.quote('(Candidate_Status:equals:Active)')\nreq = urllib.request.Request(f'https://gateway.maton.ai/zoho-recruit/recruit/v2/Candidates/search?criteria={criteria}')\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 Candidate\n\nPOST /zoho-recruit/recruit/v2/Candidates\nContent-Type: application/json\n\n{\n  \"data\": [\n    {\n      \"First_Name\": \"John\",\n      \"Last_Name\": \"Doe\",\n      \"Email\": \"john.doe@example.com\",\n      \"Phone\": \"555-123-4567\",\n      \"Current_Job_Title\": \"Software Engineer\"\n    }\n  ]\n}\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({\n    \"data\": [{\n        \"First_Name\": \"John\",\n        \"Last_Name\": \"Doe\",\n        \"Email\": \"john.doe@example.com\",\n        \"Phone\": \"555-123-4567\"\n    }]\n}).encode()\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-recruit/recruit/v2/Candidates', 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\nResponse:\n\n{\n  \"data\": [\n    {\n      \"code\": \"SUCCESS\",\n      \"status\": \"success\",\n      \"message\": \"record added\",\n      \"details\": {\n        \"id\": \"846336000000600001\",\n        \"Created_Time\": \"2026-02-06T10:00:00-08:00\",\n        \"Created_By\": {\n          \"name\": \"User Name\",\n          \"id\": \"846336000000549541\"\n        }\n      }\n    }\n  ]\n}\n\nUpdate Candidate\n\nPUT /zoho-recruit/recruit/v2/Candidates/{record_id}\nContent-Type: application/json\n\n{\n  \"data\": [\n    {\n      \"Current_Job_Title\": \"Senior Software Engineer\"\n    }\n  ]\n}\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({\n    \"data\": [{\n        \"Current_Job_Title\": \"Senior Software Engineer\"\n    }]\n}).encode()\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-recruit/recruit/v2/Candidates/846336000000552208', data=data, method='PUT')\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\nDelete Candidates\n\nDELETE /zoho-recruit/recruit/v2/Candidates?ids={record_id1},{record_id2}"
      },
      {
        "title": "Job Openings",
        "body": "List Job Openings\n\nGET /zoho-recruit/recruit/v2/Job_Openings\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-recruit/recruit/v2/Job_Openings?per_page=10')\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  \"data\": [\n    {\n      \"id\": \"846336000000552093\",\n      \"Posting_Title\": \"Senior Accountant (Sample)\",\n      \"Job_Opening_Status\": \"Waiting for approval\",\n      \"Date_Opened\": \"2026-01-21\",\n      \"Target_Date\": \"2026-02-20\",\n      \"Industry\": \"Accounting\",\n      \"City\": \"Tallahassee\",\n      \"No_of_Candidates_Hired\": 0,\n      \"No_of_Candidates_Associated\": 0\n    }\n  ],\n  \"info\": {\n    \"per_page\": 10,\n    \"count\": 1,\n    \"page\": 1,\n    \"more_records\": false\n  }\n}\n\nGet Job Opening by ID\n\nGET /zoho-recruit/recruit/v2/Job_Openings/{record_id}\n\nCreate Job Opening\n\nPOST /zoho-recruit/recruit/v2/Job_Openings\nContent-Type: application/json\n\n{\n  \"data\": [\n    {\n      \"Posting_Title\": \"Software Engineer\",\n      \"Job_Opening_Status\": \"In-progress\",\n      \"Date_Opened\": \"2026-02-01\",\n      \"Target_Date\": \"2026-03-01\"\n    }\n  ]\n}\n\nUpdate Job Opening\n\nPUT /zoho-recruit/recruit/v2/Job_Openings/{record_id}\nContent-Type: application/json\n\nDelete Job Openings\n\nDELETE /zoho-recruit/recruit/v2/Job_Openings?ids={record_id1},{record_id2}"
      },
      {
        "title": "Interviews",
        "body": "List Interviews\n\nGET /zoho-recruit/recruit/v2/Interviews\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-recruit/recruit/v2/Interviews?per_page=10')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nGet Interview by ID\n\nGET /zoho-recruit/recruit/v2/Interviews/{record_id}\n\nCreate Interview\n\nPOST /zoho-recruit/recruit/v2/Interviews\nContent-Type: application/json\n\n{\n  \"data\": [\n    {\n      \"Interview_Name\": \"Technical Interview\",\n      \"Candidate_Name\": {\"id\": \"846336000000552208\"},\n      \"Posting_Title\": {\"id\": \"846336000000552093\"},\n      \"Start_DateTime\": \"2026-02-10T10:00:00-08:00\",\n      \"End_DateTime\": \"2026-02-10T11:00:00-08:00\"\n    }\n  ]\n}"
      },
      {
        "title": "Departments",
        "body": "List Departments\n\nGET /zoho-recruit/recruit/v2/Departments\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-recruit/recruit/v2/Departments?per_page=10')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Applications",
        "body": "List Applications\n\nGET /zoho-recruit/recruit/v2/Applications"
      },
      {
        "title": "Generic Record Operations",
        "body": "All modules support the same CRUD operations:\n\n# List records\nGET /zoho-recruit/recruit/v2/{module_api_name}\n\n# Get record by ID\nGET /zoho-recruit/recruit/v2/{module_api_name}/{record_id}\n\n# Create records\nPOST /zoho-recruit/recruit/v2/{module_api_name}\n\n# Update records\nPUT /zoho-recruit/recruit/v2/{module_api_name}/{record_id}\n\n# Delete records\nDELETE /zoho-recruit/recruit/v2/{module_api_name}?ids={id1},{id2}\n\n# Search records\nGET /zoho-recruit/recruit/v2/{module_api_name}/search?criteria={criteria}"
      },
      {
        "title": "Available Modules",
        "body": "ModuleAPI NameDescriptionCandidatesCandidatesJob candidatesJob OpeningsJob_OpeningsOpen positionsApplicationsApplicationsJob applicationsInterviewsInterviewsScheduled interviewsDepartmentsDepartmentsCompany departmentsClientsClientsClient companiesContactsContactsContact personsCampaignsCampaignsRecruitment campaignsReferralsReferralsEmployee referralsTasksTasksTo-do itemsEventsEventsCalendar eventsVendorsVendorsExternal vendors"
      },
      {
        "title": "Pagination",
        "body": "Zoho Recruit uses page-based pagination:\n\nGET /zoho-recruit/recruit/v2/{module_api_name}?page=1&per_page=200\n\npage: Page number (default: 1)\nper_page: Records per page (default: 200, max: 200)\n\nResponse includes pagination info:\n\n{\n  \"data\": [...],\n  \"info\": {\n    \"per_page\": 200,\n    \"count\": 50,\n    \"page\": 1,\n    \"more_records\": false\n  }\n}"
      },
      {
        "title": "JavaScript",
        "body": "const response = await fetch(\n  'https://gateway.maton.ai/zoho-recruit/recruit/v2/Candidates?per_page=10',\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-recruit/recruit/v2/Candidates',\n    headers={'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}'},\n    params={'per_page': 10}\n)\ndata = response.json()"
      },
      {
        "title": "Notes",
        "body": "Record IDs are numeric strings (e.g., 846336000000552208)\nMaximum 200 records per GET request\nMaximum 100 records per POST/PUT request\nMaximum 100 records per DELETE request\nModule API names are case-sensitive (e.g., Job_Openings, not job_openings)\nLast_Name is mandatory for Candidates\nDate format: yyyy-MM-dd\nDateTime format: yyyy-MM-ddTHH:mm:ss±HH:mm (ISO 8601)\nLookup fields use JSON objects with id and optionally name\nIMPORTANT: When using curl commands, use curl -g when URLs contain special characters\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 Recruit connection or invalid request401Invalid or missing Maton API key429Rate limited4xx/5xxPassthrough error from Zoho Recruit API"
      },
      {
        "title": "Common Error Codes",
        "body": "CodeDescriptionINVALID_DATAInvalid field valueMANDATORY_NOT_FOUNDRequired field missingDUPLICATE_DATADuplicate record detectedINVALID_MODULEInvalid module API nameNO_PERMISSIONInsufficient permissions"
      },
      {
        "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-recruit. For example:\n\nCorrect: https://gateway.maton.ai/zoho-recruit/recruit/v2/Candidates\nIncorrect: https://gateway.maton.ai/recruit/v2/Candidates"
      },
      {
        "title": "Resources",
        "body": "Zoho Recruit API v2 Overview\nGet Records API\nInsert Records API\nUpdate Records API\nDelete Records API\nSearch Records API\nModules API\nMaton Community\nMaton Support"
      }
    ],
    "body": "Zoho Recruit\n\nAccess the Zoho Recruit API with managed OAuth authentication. Manage candidates, job openings, interviews, applications, and recruitment workflows with full CRUD operations.\n\nQuick Start\n# List all candidates\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-recruit/recruit/v2/Candidates?per_page=10')\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-recruit/{native-api-path}\n\n\nReplace {native-api-path} with the actual Zoho Recruit API endpoint path. The gateway proxies requests to recruit.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 Recruit 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-recruit&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-recruit'}).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\": \"0c9fa9b1-80b6-4caa-afc2-8629fe4d9661\",\n    \"status\": \"ACTIVE\",\n    \"creation_time\": \"2026-02-06T07:48:59.474215Z\",\n    \"last_updated_time\": \"2026-02-06T07:57:52.950167Z\",\n    \"url\": \"https://connect.maton.ai/?session_token=...\",\n    \"app\": \"zoho-recruit\",\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 Recruit 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-recruit/recruit/v2/Candidates')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nreq.add_header('Maton-Connection', '0c9fa9b1-80b6-4caa-afc2-8629fe4d9661')\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\nModules\nList All Modules\n\nGet a list of all available modules in your Zoho Recruit account.\n\nGET /zoho-recruit/recruit/v2/settings/modules\n\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-recruit/recruit/v2/settings/modules')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nCandidates\nList Candidates\nGET /zoho-recruit/recruit/v2/Candidates\n\n\nQuery Parameters:\n\nParameter\tType\tDefault\tDescription\nfields\tstring\t-\tComma-separated field API names\nsort_order\tstring\t-\tasc or desc\nsort_by\tstring\t-\tField API name to sort by\nconverted\tstring\t-\ttrue, false, or both\napproved\tstring\t-\ttrue, false, or both\npage\tinteger\t1\tPage number\nper_page\tinteger\t200\tRecords per page (max 200)\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-recruit/recruit/v2/Candidates?per_page=10')\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  \"data\": [\n    {\n      \"id\": \"846336000000552208\",\n      \"First_Name\": \"Christina\",\n      \"Last_Name\": \"Palaskas\",\n      \"Email\": \"c.palaskas@example.com\",\n      \"Candidate_Status\": \"Converted - Employee\",\n      \"Current_Employer\": \"Chandlers\",\n      \"Current_Job_Title\": \"Technical Consultant\",\n      \"Experience_in_Years\": 3,\n      \"Skill_Set\": \"Communication, Presentation, Customer service\",\n      \"Candidate_Owner\": {\n        \"name\": \"Byungkyu Park\",\n        \"id\": \"846336000000549541\"\n      }\n    }\n  ],\n  \"info\": {\n    \"per_page\": 10,\n    \"count\": 1,\n    \"page\": 1,\n    \"more_records\": false\n  }\n}\n\nGet Candidate by ID\nGET /zoho-recruit/recruit/v2/Candidates/{record_id}\n\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-recruit/recruit/v2/Candidates/846336000000552208')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nSearch Candidates\nGET /zoho-recruit/recruit/v2/Candidates/search?criteria={criteria}\n\n\nQuery Parameters:\n\nParameter\tType\tDescription\ncriteria\tstring\tSearch criteria (e.g., (Last_Name:contains:Smith))\nemail\tstring\tSearch by email\nphone\tstring\tSearch by phone\nword\tstring\tGlobal word search\npage\tinteger\tPage number\nper_page\tinteger\tRecords per page\n\nSearch Operators:\n\nText: equals, not_equal, starts_with, ends_with, contains, not_contains, in\nDate/Number: equals, not_equal, greater_than, less_than, greater_equal, less_equal, between\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nimport urllib.parse\ncriteria = urllib.parse.quote('(Candidate_Status:equals:Active)')\nreq = urllib.request.Request(f'https://gateway.maton.ai/zoho-recruit/recruit/v2/Candidates/search?criteria={criteria}')\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 Candidate\nPOST /zoho-recruit/recruit/v2/Candidates\nContent-Type: application/json\n\n{\n  \"data\": [\n    {\n      \"First_Name\": \"John\",\n      \"Last_Name\": \"Doe\",\n      \"Email\": \"john.doe@example.com\",\n      \"Phone\": \"555-123-4567\",\n      \"Current_Job_Title\": \"Software Engineer\"\n    }\n  ]\n}\n\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({\n    \"data\": [{\n        \"First_Name\": \"John\",\n        \"Last_Name\": \"Doe\",\n        \"Email\": \"john.doe@example.com\",\n        \"Phone\": \"555-123-4567\"\n    }]\n}).encode()\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-recruit/recruit/v2/Candidates', 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\n\nResponse:\n\n{\n  \"data\": [\n    {\n      \"code\": \"SUCCESS\",\n      \"status\": \"success\",\n      \"message\": \"record added\",\n      \"details\": {\n        \"id\": \"846336000000600001\",\n        \"Created_Time\": \"2026-02-06T10:00:00-08:00\",\n        \"Created_By\": {\n          \"name\": \"User Name\",\n          \"id\": \"846336000000549541\"\n        }\n      }\n    }\n  ]\n}\n\nUpdate Candidate\nPUT /zoho-recruit/recruit/v2/Candidates/{record_id}\nContent-Type: application/json\n\n{\n  \"data\": [\n    {\n      \"Current_Job_Title\": \"Senior Software Engineer\"\n    }\n  ]\n}\n\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({\n    \"data\": [{\n        \"Current_Job_Title\": \"Senior Software Engineer\"\n    }]\n}).encode()\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-recruit/recruit/v2/Candidates/846336000000552208', data=data, method='PUT')\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\nDelete Candidates\nDELETE /zoho-recruit/recruit/v2/Candidates?ids={record_id1},{record_id2}\n\nJob Openings\nList Job Openings\nGET /zoho-recruit/recruit/v2/Job_Openings\n\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-recruit/recruit/v2/Job_Openings?per_page=10')\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  \"data\": [\n    {\n      \"id\": \"846336000000552093\",\n      \"Posting_Title\": \"Senior Accountant (Sample)\",\n      \"Job_Opening_Status\": \"Waiting for approval\",\n      \"Date_Opened\": \"2026-01-21\",\n      \"Target_Date\": \"2026-02-20\",\n      \"Industry\": \"Accounting\",\n      \"City\": \"Tallahassee\",\n      \"No_of_Candidates_Hired\": 0,\n      \"No_of_Candidates_Associated\": 0\n    }\n  ],\n  \"info\": {\n    \"per_page\": 10,\n    \"count\": 1,\n    \"page\": 1,\n    \"more_records\": false\n  }\n}\n\nGet Job Opening by ID\nGET /zoho-recruit/recruit/v2/Job_Openings/{record_id}\n\nCreate Job Opening\nPOST /zoho-recruit/recruit/v2/Job_Openings\nContent-Type: application/json\n\n{\n  \"data\": [\n    {\n      \"Posting_Title\": \"Software Engineer\",\n      \"Job_Opening_Status\": \"In-progress\",\n      \"Date_Opened\": \"2026-02-01\",\n      \"Target_Date\": \"2026-03-01\"\n    }\n  ]\n}\n\nUpdate Job Opening\nPUT /zoho-recruit/recruit/v2/Job_Openings/{record_id}\nContent-Type: application/json\n\nDelete Job Openings\nDELETE /zoho-recruit/recruit/v2/Job_Openings?ids={record_id1},{record_id2}\n\nInterviews\nList Interviews\nGET /zoho-recruit/recruit/v2/Interviews\n\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-recruit/recruit/v2/Interviews?per_page=10')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nGet Interview by ID\nGET /zoho-recruit/recruit/v2/Interviews/{record_id}\n\nCreate Interview\nPOST /zoho-recruit/recruit/v2/Interviews\nContent-Type: application/json\n\n{\n  \"data\": [\n    {\n      \"Interview_Name\": \"Technical Interview\",\n      \"Candidate_Name\": {\"id\": \"846336000000552208\"},\n      \"Posting_Title\": {\"id\": \"846336000000552093\"},\n      \"Start_DateTime\": \"2026-02-10T10:00:00-08:00\",\n      \"End_DateTime\": \"2026-02-10T11:00:00-08:00\"\n    }\n  ]\n}\n\nDepartments\nList Departments\nGET /zoho-recruit/recruit/v2/Departments\n\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-recruit/recruit/v2/Departments?per_page=10')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nApplications\nList Applications\nGET /zoho-recruit/recruit/v2/Applications\n\nGeneric Record Operations\n\nAll modules support the same CRUD operations:\n\n# List records\nGET /zoho-recruit/recruit/v2/{module_api_name}\n\n# Get record by ID\nGET /zoho-recruit/recruit/v2/{module_api_name}/{record_id}\n\n# Create records\nPOST /zoho-recruit/recruit/v2/{module_api_name}\n\n# Update records\nPUT /zoho-recruit/recruit/v2/{module_api_name}/{record_id}\n\n# Delete records\nDELETE /zoho-recruit/recruit/v2/{module_api_name}?ids={id1},{id2}\n\n# Search records\nGET /zoho-recruit/recruit/v2/{module_api_name}/search?criteria={criteria}\n\nAvailable Modules\nModule\tAPI Name\tDescription\nCandidates\tCandidates\tJob candidates\nJob Openings\tJob_Openings\tOpen positions\nApplications\tApplications\tJob applications\nInterviews\tInterviews\tScheduled interviews\nDepartments\tDepartments\tCompany departments\nClients\tClients\tClient companies\nContacts\tContacts\tContact persons\nCampaigns\tCampaigns\tRecruitment campaigns\nReferrals\tReferrals\tEmployee referrals\nTasks\tTasks\tTo-do items\nEvents\tEvents\tCalendar events\nVendors\tVendors\tExternal vendors\nPagination\n\nZoho Recruit uses page-based pagination:\n\nGET /zoho-recruit/recruit/v2/{module_api_name}?page=1&per_page=200\n\npage: Page number (default: 1)\nper_page: Records per page (default: 200, max: 200)\n\nResponse includes pagination info:\n\n{\n  \"data\": [...],\n  \"info\": {\n    \"per_page\": 200,\n    \"count\": 50,\n    \"page\": 1,\n    \"more_records\": false\n  }\n}\n\nCode Examples\nJavaScript\nconst response = await fetch(\n  'https://gateway.maton.ai/zoho-recruit/recruit/v2/Candidates?per_page=10',\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-recruit/recruit/v2/Candidates',\n    headers={'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}'},\n    params={'per_page': 10}\n)\ndata = response.json()\n\nNotes\nRecord IDs are numeric strings (e.g., 846336000000552208)\nMaximum 200 records per GET request\nMaximum 100 records per POST/PUT request\nMaximum 100 records per DELETE request\nModule API names are case-sensitive (e.g., Job_Openings, not job_openings)\nLast_Name is mandatory for Candidates\nDate format: yyyy-MM-dd\nDateTime format: yyyy-MM-ddTHH:mm:ss±HH:mm (ISO 8601)\nLookup fields use JSON objects with id and optionally name\nIMPORTANT: When using curl commands, use curl -g when URLs contain special characters\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 Recruit connection or invalid request\n401\tInvalid or missing Maton API key\n429\tRate limited\n4xx/5xx\tPassthrough error from Zoho Recruit API\nCommon Error Codes\nCode\tDescription\nINVALID_DATA\tInvalid field value\nMANDATORY_NOT_FOUND\tRequired field missing\nDUPLICATE_DATA\tDuplicate record detected\nINVALID_MODULE\tInvalid module API name\nNO_PERMISSION\tInsufficient permissions\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-recruit. For example:\nCorrect: https://gateway.maton.ai/zoho-recruit/recruit/v2/Candidates\nIncorrect: https://gateway.maton.ai/recruit/v2/Candidates\nResources\nZoho Recruit API v2 Overview\nGet Records API\nInsert Records API\nUpdate Records API\nDelete Records API\nSearch Records API\nModules API\nMaton Community\nMaton Support"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/byungkyu/zoho-recruit",
    "publisherUrl": "https://clawhub.ai/byungkyu/zoho-recruit",
    "owner": "byungkyu",
    "version": "1.0.3",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/zoho-recruit",
    "downloadUrl": "https://openagent3.xyz/downloads/zoho-recruit",
    "agentUrl": "https://openagent3.xyz/skills/zoho-recruit/agent",
    "manifestUrl": "https://openagent3.xyz/skills/zoho-recruit/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/zoho-recruit/agent.md"
  }
}