{
  "schemaVersion": "1.0",
  "item": {
    "slug": "zoho-bigin",
    "name": "Zoho Bigin",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/byungkyu/zoho-bigin",
    "canonicalUrl": "https://clawhub.ai/byungkyu/zoho-bigin",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/zoho-bigin",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=zoho-bigin",
    "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-bigin"
    },
    "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-bigin",
    "agentPageUrl": "https://openagent3.xyz/skills/zoho-bigin/agent",
    "manifestUrl": "https://openagent3.xyz/skills/zoho-bigin/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/zoho-bigin/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 Bigin",
        "body": "Access the Zoho Bigin API with managed OAuth authentication. Manage contacts, companies, pipelines, and products with full CRUD operations."
      },
      {
        "title": "Quick Start",
        "body": "# List contacts\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-bigin/bigin/v2/Contacts?fields=First_Name,Last_Name,Email')\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-bigin/bigin/v2/{endpoint}\n\nThe gateway proxies requests to www.zohoapis.com/bigin/v2 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 Bigin 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-bigin&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-bigin'}).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-bigin\",\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 Bigin 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-bigin/bigin/v2/Contacts?fields=First_Name,Last_Name,Email')\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": "Modules",
        "body": "Zoho Bigin organizes data into modules. Available modules include:\n\nModuleAPI NameDescriptionContactsContactsIndividual peopleCompaniesAccountsOrganizations/businessesPipelinesPipelinesSales opportunities/dealsProductsProductsItems you sellTasksTasksTo-do items (requires additional OAuth scope)EventsEventsCalendar appointments (requires additional OAuth scope)CallsCallsPhone call logs (requires additional OAuth scope)NotesNotesNotes attached to records (requires additional OAuth scope)"
      },
      {
        "title": "List Records",
        "body": "GET /zoho-bigin/bigin/v2/{module_api_name}?fields={field1},{field2}\n\nQuery Parameters:\n\nParameterTypeDescriptionfieldsstringRequired. Comma-separated field API names to retrievesort_orderstringasc or descsort_bystringField API name to sort bypageintegerPage number (default: 1)per_pageintegerRecords per page (default: 200, max: 200)cvidstringCustom view ID for filtered results\n\nExample - List Contacts:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-bigin/bigin/v2/Contacts?fields=First_Name,Last_Name,Email,Phone')\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      \"First_Name\": \"Ted\",\n      \"Email\": \"support@bigin.com\",\n      \"Last_Name\": \"Watson\",\n      \"id\": \"7255024000000596045\"\n    }\n  ],\n  \"info\": {\n    \"per_page\": 200,\n    \"count\": 1,\n    \"page\": 1,\n    \"more_records\": false\n  }\n}\n\nExample - List Companies (Accounts):\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-bigin/bigin/v2/Accounts?fields=Account_Name,Website')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Get Record",
        "body": "GET /zoho-bigin/bigin/v2/{module_api_name}/{record_id}\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-bigin/bigin/v2/Contacts/7255024000000596045')\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 Records",
        "body": "POST /zoho-bigin/bigin/v2/{module_api_name}\nContent-Type: application/json\n\n{\n  \"data\": [\n    {\n      \"field_api_name\": \"value\"\n    }\n  ]\n}\n\nMandatory Fields by Module:\n\nModuleRequired FieldsContactsLast_NameAccountsAccount_NamePipelinesPipeline_Name, StageProductsProduct_Name\n\nExample - Create Contact:\n\npython <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({\n    \"data\": [{\n        \"Last_Name\": \"Smith\",\n        \"First_Name\": \"John\",\n        \"Email\": \"john.smith@example.com\",\n        \"Phone\": \"+1-555-0123\"\n    }]\n}).encode()\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-bigin/bigin/v2/Contacts', 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      \"details\": {\n        \"Modified_Time\": \"2026-02-06T00:28:53-08:00\",\n        \"Modified_By\": {\n          \"name\": \"User Name\",\n          \"id\": \"7255024000000590001\"\n        },\n        \"Created_Time\": \"2026-02-06T00:28:53-08:00\",\n        \"id\": \"7255024000000605002\",\n        \"Created_By\": {\n          \"name\": \"User Name\",\n          \"id\": \"7255024000000590001\"\n        }\n      },\n      \"message\": \"record added\",\n      \"status\": \"success\"\n    }\n  ]\n}\n\nExample - Create Company (Account):\n\npython <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({\n    \"data\": [{\n        \"Account_Name\": \"Acme Corporation\",\n        \"Website\": \"https://acme.com\"\n    }]\n}).encode()\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-bigin/bigin/v2/Accounts', 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": "Update Records",
        "body": "PUT /zoho-bigin/bigin/v2/{module_api_name}\nContent-Type: application/json\n\n{\n  \"data\": [\n    {\n      \"id\": \"record_id\",\n      \"field_api_name\": \"updated_value\"\n    }\n  ]\n}\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({\n    \"data\": [{\n        \"id\": \"7255024000000605002\",\n        \"Phone\": \"+1-555-9999\"\n    }]\n}).encode()\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-bigin/bigin/v2/Contacts', 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\nResponse:\n\n{\n  \"data\": [\n    {\n      \"code\": \"SUCCESS\",\n      \"details\": {\n        \"Modified_Time\": \"2026-02-06T00:29:07-08:00\",\n        \"id\": \"7255024000000605002\"\n      },\n      \"message\": \"record updated\",\n      \"status\": \"success\"\n    }\n  ]\n}"
      },
      {
        "title": "Delete Records",
        "body": "DELETE /zoho-bigin/bigin/v2/{module_api_name}?ids={record_id1},{record_id2}\n\nQuery Parameters:\n\nParameterTypeDescriptionidsstringComma-separated record IDs (required, max 100)wf_triggerbooleanExecute workflows (default: true)\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-bigin/bigin/v2/Contacts?ids=7255024000000605002', 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  \"data\": [\n    {\n      \"code\": \"SUCCESS\",\n      \"details\": {\n        \"id\": \"7255024000000605002\"\n      },\n      \"message\": \"record deleted\",\n      \"status\": \"success\"\n    }\n  ]\n}"
      },
      {
        "title": "Search Records",
        "body": "GET /zoho-bigin/bigin/v2/{module_api_name}/search\n\nQuery Parameters:\n\nParameterTypeDescriptioncriteriastringSearch criteria (e.g., (Last_Name:equals:Smith))emailstringSearch by email addressphonestringSearch by phone numberwordstringGlobal text searchpageintegerPage numberper_pageintegerRecords per page (max 200)\n\nCriteria Format: ((field_api_name:operator:value)and/or(...))\n\nOperators: equals, starts_with\n\nExample - Search by email:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-bigin/bigin/v2/Contacts/search?email=support@bigin.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\nExample - Search by criteria:\n\npython <<'EOF'\nimport urllib.request, os, json\nimport urllib.parse\ncriteria = urllib.parse.quote('(Last_Name:equals:Watson)')\nreq = urllib.request.Request(f'https://gateway.maton.ai/zoho-bigin/bigin/v2/Contacts/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"
      },
      {
        "title": "Metadata APIs",
        "body": "Get Modules\n\nGET /zoho-bigin/bigin/v2/settings/modules\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-bigin/bigin/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\nGet Users\n\nGET /zoho-bigin/bigin/v2/users\n\nQuery Parameters:\n\nParameterTypeDescriptiontypestringAllUsers, ActiveUsers, AdminUsers, CurrentUserpageintegerPage numberper_pageintegerUsers per page (max 200)\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-bigin/bigin/v2/users?type=ActiveUsers')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF"
      },
      {
        "title": "Pagination",
        "body": "Zoho Bigin uses page-based pagination with page and per_page parameters:\n\nGET /zoho-bigin/bigin/v2/{module_api_name}?fields=First_Name,Last_Name&page=1&per_page=50\n\nResponse includes pagination info:\n\n{\n  \"data\": [...],\n  \"info\": {\n    \"per_page\": 50,\n    \"count\": 50,\n    \"page\": 1,\n    \"more_records\": true\n  }\n}\n\nContinue fetching while more_records is true, incrementing page each time."
      },
      {
        "title": "JavaScript",
        "body": "const response = await fetch(\n  'https://gateway.maton.ai/zoho-bigin/bigin/v2/Contacts?fields=First_Name,Last_Name,Email',\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-bigin/bigin/v2/Contacts',\n    headers={'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}'},\n    params={'fields': 'First_Name,Last_Name,Email'}\n)\ndata = response.json()"
      },
      {
        "title": "Notes",
        "body": "The fields parameter is required for list operations\nModule API names are case-sensitive (e.g., Contacts, not contacts)\nCompanies are accessed via the Accounts module API name\nSales opportunities are accessed via the Pipelines module (not Deals)\nMaximum 100 records per create/update request\nMaximum 100 records per delete request\nMaximum 200 records returned per GET request\nUse field API names (not display names) in requests\nSome modules (Tasks, Events, Calls, Notes) require additional OAuth scopes. If you receive a scope error, contact Maton support at support@maton.ai with the specific operations/APIs you need and your use-case\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 Bigin connection, missing required parameter, or invalid request401Invalid or missing Maton API key, or OAuth scope mismatch404Invalid URL pattern or resource not found429Rate limited4xx/5xxPassthrough error from Zoho Bigin API"
      },
      {
        "title": "Common Error Codes",
        "body": "CodeDescriptionREQUIRED_PARAM_MISSINGRequired parameter (like fields) is missingINVALID_URL_PATTERNInvalid API endpoint pathINVALID_MODULEModule does not exist or is not API-supportedOAUTH_SCOPE_MISMATCHOAuth token lacks required permissions for the endpointNO_PERMISSIONInsufficient privileges for the operationMANDATORY_NOT_FOUNDRequired field is missingINVALID_DATAData type mismatch or format errorDUPLICATE_DATARecord violates unique field constraint"
      },
      {
        "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-bigin. For example:\n\nCorrect: https://gateway.maton.ai/zoho-bigin/bigin/v2/Contacts\nIncorrect: https://gateway.maton.ai/bigin/v2/Contacts"
      },
      {
        "title": "Resources",
        "body": "Bigin API Overview\nBigin REST API Documentation\nModules API\nMaton Community\nMaton Support"
      }
    ],
    "body": "Zoho Bigin\n\nAccess the Zoho Bigin API with managed OAuth authentication. Manage contacts, companies, pipelines, and products with full CRUD operations.\n\nQuick Start\n# List contacts\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-bigin/bigin/v2/Contacts?fields=First_Name,Last_Name,Email')\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-bigin/bigin/v2/{endpoint}\n\n\nThe gateway proxies requests to www.zohoapis.com/bigin/v2 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 Bigin 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-bigin&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-bigin'}).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-bigin\",\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 Bigin 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-bigin/bigin/v2/Contacts?fields=First_Name,Last_Name,Email')\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\nModules\n\nZoho Bigin organizes data into modules. Available modules include:\n\nModule\tAPI Name\tDescription\nContacts\tContacts\tIndividual people\nCompanies\tAccounts\tOrganizations/businesses\nPipelines\tPipelines\tSales opportunities/deals\nProducts\tProducts\tItems you sell\nTasks\tTasks\tTo-do items (requires additional OAuth scope)\nEvents\tEvents\tCalendar appointments (requires additional OAuth scope)\nCalls\tCalls\tPhone call logs (requires additional OAuth scope)\nNotes\tNotes\tNotes attached to records (requires additional OAuth scope)\nList Records\nGET /zoho-bigin/bigin/v2/{module_api_name}?fields={field1},{field2}\n\n\nQuery Parameters:\n\nParameter\tType\tDescription\nfields\tstring\tRequired. Comma-separated field API names to retrieve\nsort_order\tstring\tasc or desc\nsort_by\tstring\tField API name to sort by\npage\tinteger\tPage number (default: 1)\nper_page\tinteger\tRecords per page (default: 200, max: 200)\ncvid\tstring\tCustom view ID for filtered results\n\nExample - List Contacts:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-bigin/bigin/v2/Contacts?fields=First_Name,Last_Name,Email,Phone')\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      \"First_Name\": \"Ted\",\n      \"Email\": \"support@bigin.com\",\n      \"Last_Name\": \"Watson\",\n      \"id\": \"7255024000000596045\"\n    }\n  ],\n  \"info\": {\n    \"per_page\": 200,\n    \"count\": 1,\n    \"page\": 1,\n    \"more_records\": false\n  }\n}\n\n\nExample - List Companies (Accounts):\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-bigin/bigin/v2/Accounts?fields=Account_Name,Website')\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 Record\nGET /zoho-bigin/bigin/v2/{module_api_name}/{record_id}\n\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-bigin/bigin/v2/Contacts/7255024000000596045')\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 Records\nPOST /zoho-bigin/bigin/v2/{module_api_name}\nContent-Type: application/json\n\n{\n  \"data\": [\n    {\n      \"field_api_name\": \"value\"\n    }\n  ]\n}\n\n\nMandatory Fields by Module:\n\nModule\tRequired Fields\nContacts\tLast_Name\nAccounts\tAccount_Name\nPipelines\tPipeline_Name, Stage\nProducts\tProduct_Name\n\nExample - Create Contact:\n\npython <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({\n    \"data\": [{\n        \"Last_Name\": \"Smith\",\n        \"First_Name\": \"John\",\n        \"Email\": \"john.smith@example.com\",\n        \"Phone\": \"+1-555-0123\"\n    }]\n}).encode()\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-bigin/bigin/v2/Contacts', 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      \"details\": {\n        \"Modified_Time\": \"2026-02-06T00:28:53-08:00\",\n        \"Modified_By\": {\n          \"name\": \"User Name\",\n          \"id\": \"7255024000000590001\"\n        },\n        \"Created_Time\": \"2026-02-06T00:28:53-08:00\",\n        \"id\": \"7255024000000605002\",\n        \"Created_By\": {\n          \"name\": \"User Name\",\n          \"id\": \"7255024000000590001\"\n        }\n      },\n      \"message\": \"record added\",\n      \"status\": \"success\"\n    }\n  ]\n}\n\n\nExample - Create Company (Account):\n\npython <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({\n    \"data\": [{\n        \"Account_Name\": \"Acme Corporation\",\n        \"Website\": \"https://acme.com\"\n    }]\n}).encode()\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-bigin/bigin/v2/Accounts', 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\nUpdate Records\nPUT /zoho-bigin/bigin/v2/{module_api_name}\nContent-Type: application/json\n\n{\n  \"data\": [\n    {\n      \"id\": \"record_id\",\n      \"field_api_name\": \"updated_value\"\n    }\n  ]\n}\n\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\ndata = json.dumps({\n    \"data\": [{\n        \"id\": \"7255024000000605002\",\n        \"Phone\": \"+1-555-9999\"\n    }]\n}).encode()\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-bigin/bigin/v2/Contacts', 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\n\nResponse:\n\n{\n  \"data\": [\n    {\n      \"code\": \"SUCCESS\",\n      \"details\": {\n        \"Modified_Time\": \"2026-02-06T00:29:07-08:00\",\n        \"id\": \"7255024000000605002\"\n      },\n      \"message\": \"record updated\",\n      \"status\": \"success\"\n    }\n  ]\n}\n\nDelete Records\nDELETE /zoho-bigin/bigin/v2/{module_api_name}?ids={record_id1},{record_id2}\n\n\nQuery Parameters:\n\nParameter\tType\tDescription\nids\tstring\tComma-separated record IDs (required, max 100)\nwf_trigger\tboolean\tExecute workflows (default: true)\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-bigin/bigin/v2/Contacts?ids=7255024000000605002', 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  \"data\": [\n    {\n      \"code\": \"SUCCESS\",\n      \"details\": {\n        \"id\": \"7255024000000605002\"\n      },\n      \"message\": \"record deleted\",\n      \"status\": \"success\"\n    }\n  ]\n}\n\nSearch Records\nGET /zoho-bigin/bigin/v2/{module_api_name}/search\n\n\nQuery Parameters:\n\nParameter\tType\tDescription\ncriteria\tstring\tSearch criteria (e.g., (Last_Name:equals:Smith))\nemail\tstring\tSearch by email address\nphone\tstring\tSearch by phone number\nword\tstring\tGlobal text search\npage\tinteger\tPage number\nper_page\tinteger\tRecords per page (max 200)\n\nCriteria Format: ((field_api_name:operator:value)and/or(...))\n\nOperators: equals, starts_with\n\nExample - Search by email:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-bigin/bigin/v2/Contacts/search?email=support@bigin.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\n\nExample - Search by criteria:\n\npython <<'EOF'\nimport urllib.request, os, json\nimport urllib.parse\ncriteria = urllib.parse.quote('(Last_Name:equals:Watson)')\nreq = urllib.request.Request(f'https://gateway.maton.ai/zoho-bigin/bigin/v2/Contacts/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\nMetadata APIs\nGet Modules\nGET /zoho-bigin/bigin/v2/settings/modules\n\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-bigin/bigin/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\nGet Users\nGET /zoho-bigin/bigin/v2/users\n\n\nQuery Parameters:\n\nParameter\tType\tDescription\ntype\tstring\tAllUsers, ActiveUsers, AdminUsers, CurrentUser\npage\tinteger\tPage number\nper_page\tinteger\tUsers per page (max 200)\n\nExample:\n\npython <<'EOF'\nimport urllib.request, os, json\nreq = urllib.request.Request('https://gateway.maton.ai/zoho-bigin/bigin/v2/users?type=ActiveUsers')\nreq.add_header('Authorization', f'Bearer {os.environ[\"MATON_API_KEY\"]}')\nprint(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))\nEOF\n\nPagination\n\nZoho Bigin uses page-based pagination with page and per_page parameters:\n\nGET /zoho-bigin/bigin/v2/{module_api_name}?fields=First_Name,Last_Name&page=1&per_page=50\n\n\nResponse includes pagination info:\n\n{\n  \"data\": [...],\n  \"info\": {\n    \"per_page\": 50,\n    \"count\": 50,\n    \"page\": 1,\n    \"more_records\": true\n  }\n}\n\n\nContinue fetching while more_records is true, incrementing page each time.\n\nCode Examples\nJavaScript\nconst response = await fetch(\n  'https://gateway.maton.ai/zoho-bigin/bigin/v2/Contacts?fields=First_Name,Last_Name,Email',\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-bigin/bigin/v2/Contacts',\n    headers={'Authorization': f'Bearer {os.environ[\"MATON_API_KEY\"]}'},\n    params={'fields': 'First_Name,Last_Name,Email'}\n)\ndata = response.json()\n\nNotes\nThe fields parameter is required for list operations\nModule API names are case-sensitive (e.g., Contacts, not contacts)\nCompanies are accessed via the Accounts module API name\nSales opportunities are accessed via the Pipelines module (not Deals)\nMaximum 100 records per create/update request\nMaximum 100 records per delete request\nMaximum 200 records returned per GET request\nUse field API names (not display names) in requests\nSome modules (Tasks, Events, Calls, Notes) require additional OAuth scopes. If you receive a scope error, contact Maton support at support@maton.ai with the specific operations/APIs you need and your use-case\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 Bigin connection, missing required parameter, or invalid request\n401\tInvalid or missing Maton API key, or OAuth scope mismatch\n404\tInvalid URL pattern or resource not found\n429\tRate limited\n4xx/5xx\tPassthrough error from Zoho Bigin API\nCommon Error Codes\nCode\tDescription\nREQUIRED_PARAM_MISSING\tRequired parameter (like fields) is missing\nINVALID_URL_PATTERN\tInvalid API endpoint path\nINVALID_MODULE\tModule does not exist or is not API-supported\nOAUTH_SCOPE_MISMATCH\tOAuth token lacks required permissions for the endpoint\nNO_PERMISSION\tInsufficient privileges for the operation\nMANDATORY_NOT_FOUND\tRequired field is missing\nINVALID_DATA\tData type mismatch or format error\nDUPLICATE_DATA\tRecord violates unique field constraint\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-bigin. For example:\nCorrect: https://gateway.maton.ai/zoho-bigin/bigin/v2/Contacts\nIncorrect: https://gateway.maton.ai/bigin/v2/Contacts\nResources\nBigin API Overview\nBigin REST API Documentation\nModules API\nMaton Community\nMaton Support"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/byungkyu/zoho-bigin",
    "publisherUrl": "https://clawhub.ai/byungkyu/zoho-bigin",
    "owner": "byungkyu",
    "version": "1.0.3",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/zoho-bigin",
    "downloadUrl": "https://openagent3.xyz/downloads/zoho-bigin",
    "agentUrl": "https://openagent3.xyz/skills/zoho-bigin/agent",
    "manifestUrl": "https://openagent3.xyz/skills/zoho-bigin/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/zoho-bigin/agent.md"
  }
}