@robinpath/zoho
Zoho module for RobinPath.

Why use this module?
The zoho module lets you:
- listRecords
- getRecord
- createRecord
- updateRecord
- deleteRecord
All functions are callable directly from RobinPath scripts with a simple, consistent API.
Installation
npm install @robinpath/zoho
Quick Start
1. Set up credentials
zoho.setCredentials "your-credentials"
2. listRecords
zoho.listRecords
Available Functions
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 |
Examples
listRecords
zoho.listRecords
getRecord
zoho.getRecord
createRecord
zoho.createRecord
Integration with RobinPath
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
`);
Full API Reference
See MODULE.md for complete documentation including all parameters, return types, error handling, and advanced examples.
Related Modules
License
MIT