@robinpath/zoho
v0.1.1
Published
Zoho module for RobinPath.
Downloads
144
Readme
@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/zohoQuick Start
1. Set up credentials
zoho.setCredentials "your-credentials"2. listRecords
zoho.listRecordsAvailable Functions
| 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 |
Examples
listRecords
zoho.listRecordsgetRecord
zoho.getRecordcreateRecord
zoho.createRecordIntegration 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
@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 functionality
License
MIT
