
Security News
Frontier AI Is Now Critical Infrastructure
The Fable shutdown shows how quickly model access can become a business continuity risk for AI-dependent engineering teams.
@robinpath/zoho
Advanced tools
Zoho CRM API v2 — modules and record CRUD. OAuth 2.0 with per-region data centers and auto-refresh via the encrypted credential vault.
Zoho module for RobinPath.
The zoho module lets you:
All functions are callable directly from RobinPath scripts with a simple, consistent API.
robinpath add @robinpath/zoho
1. Set up credentials
zoho.setCredentials "your-credentials"
2. listRecords
zoho.listRecords
| Function | Description |
|---|---|
zoho.setCredentials | Configure zoho credentials. |
zoho.listRecords | listRecords |
zoho.getRecord | getRecord |
zoho.createRecord | createRecord |
zoho.updateRecord | updateRecord |
zoho.deleteRecord | deleteRecord |
zoho.searchRecords | searchRecords |
zoho.upsertRecords | upsertRecords |
zoho.listModules | listModules |
zoho.getModuleFields | getModuleFields |
zoho.createLead | createLead |
zoho.createContact | createContact |
zoho.createDeal | createDeal |
zoho.createAccount | createAccount |
zoho.createTask | createTask |
zoho.convertLead | convertLead |
zoho.addNote | addNote |
zoho.listNotes | listNotes |
zoho.getUsers | getUsers |
zoho.getOrganization | getOrganization |
zoho.bulkRead | bulkRead |
zoho.listRecords
zoho.getRecord
zoho.createRecord
import { RobinPath } from "@wiredwp/robinpath";
import Module from "@robinpath/zoho";
const rp = new RobinPath();
rp.registerModule(Module.name, Module.functions);
rp.registerModuleMeta(Module.name, Module.functionMetadata);
const result = await rp.executeScript(`
zoho.setCredentials "your-credentials"
zoho.listRecords
`);
See MODULE.md for complete documentation including all parameters, return types, error handling, and advanced examples.
@robinpath/hubspot — HubSpot module for complementary functionality@robinpath/salesforce — Salesforce module for complementary functionality@robinpath/pipedrive — Pipedrive module for complementary functionality@robinpath/freshdesk — Freshdesk module for complementary functionality@robinpath/intercom — Intercom module for complementary functionalityMIT
FAQs
Zoho CRM API v2 — modules and record CRUD. OAuth 2.0 with per-region data centers and auto-refresh via the encrypted credential vault.
We found that @robinpath/zoho demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
The Fable shutdown shows how quickly model access can become a business continuity risk for AI-dependent engineering teams.

Security News
AI agents are pulling packages into environments no scanner is watching, creating exposure before security teams can see it.

Security News
GitHub Actions checkout now blocks risky pull_request_target checkouts by default to help prevent pwn request supply chain attacks.