
Zoho Creator API integration is the capability that transforms Zoho Creator from a simple form builder into a genuine enterprise application platform. Every application built on Zoho Creator — whether it is a vendor onboarding portal, a service delivery tracker, a compliance management tool, or a custom inventory system — automatically generates a full REST API that can communicate bidirectionally with any external system.
For Indian businesses, this matters for a specific reason. Most off-the-shelf SaaS products do not accommodate the complexity of Indian business processes: GST multi-tier calculations, government portal data submission (MCA, EPFO, GST Network), state-specific RERA compliance forms, Tally migration, and multi-location INR inventory tracking. Zoho Creator lets businesses build these processes as custom applications — and then connect them to their entire technology stack through Zoho Creator API integration.
This guide covers 7 specific integration patterns, the complete REST API setup process, Deluge scripting for outbound API calls, database connectivity, webhook configuration, and the 2026 INR pricing for each plan level. Codroid Labs builds and integrates Zoho Creator applications for Indian businesses — this is practical implementation knowledge, not documentation summaries.
Auto
REST API generated for every form and report
OAuth 2.0
Industry-standard API authentication
Rs.1,200
Professional plan/user/month — full API access
Zero Code
Inbound API needs no custom server deployment
What Is Zoho Creator and How Does Its Database Work?
Zoho Creator is a low-code application development platform that allows businesses to build custom database applications, portals, and process management tools — without writing traditional server-side code. Applications are built using drag-and-drop form builders, and Zoho manages the underlying database infrastructure, hosting, and security automatically.
Under the surface, every Zoho Creator application has a structured relational database. Each form in Creator corresponds to a database table. Each form field is a column. Each form submission is a row. Creator calls these “reports” — which are configurable views of the underlying data, similar to database views or stored queries.
This database architecture is what makes Zoho Creator API integration powerful. Because the data is stored in a real relational structure, every form and report is automatically accessible via a REST API endpoint with full CRUD support. You do not need to write an API server — Creator generates it for you.
Zoho Creator App Structure — How the Database Maps to API
Application
The full app container (e.g. Vendor Portal)
Form = Database Table
Each form stores one type of record (e.g. Vendor Details)
Report = API Endpoint
Each report is accessible at /api/v2/…/report/{link-name}
The Auto-Generated REST API — Every Zoho Creator App Is an API
The most important concept for understanding Zoho Creator API integration is this: you do not need to build an API for your Creator application. It already has one — generated automatically from your app structure.
The base URL pattern for any Creator API endpoint in India:
BASE URL PATTERN
https://creator.zoho.in/api/v2/{owner-name}/{app-link-name}/report/{report-link-name}
All standard HTTP methods are supported on this endpoint:
Authentication for all Creator API calls uses OAuth 2.0. The required header for every request is:
Authorization: Zoho-oauthtoken {access_token}
7 Powerful Zoho Creator API Integration Patterns for Indian Businesses
These are the seven most impactful Zoho Creator API integration patterns Codroid Labs implements for Indian businesses — ranging from simple webhook triggers to complex multi-system database synchronisation.
1
Zoho CRM to Creator Bidirectional Sync
Zoho Creator API integration — Native Zoho Connections | Direction: Bidirectional
The most common Zoho Creator API integration pattern for Indian businesses using both Creator and Zoho CRM. Data entered in a Creator custom application — such as a site survey form, a service delivery report, or a project completion checklist — automatically creates or updates the corresponding CRM record, account, or deal.
Implementation: In Creator, use Deluge’s built-in zoho.crm.create() and zoho.crm.update() functions. No OAuth setup required for intra-Zoho connections — Creator and CRM communicate natively through the Connections framework.
2
External ERP or Legacy System Integration via REST API
Zoho Creator API integration — REST + OAuth 2.0 | Direction: Inbound from ERP
Indian businesses running SAP, Oracle, Microsoft Dynamics, or custom legacy ERP systems can push data into Zoho Creator apps using the Creator REST API. Purchase orders created in SAP automatically appear in the Creator vendor tracking app. Inventory updates from a legacy system reflect in the Creator dashboard in real time.
The ERP system authenticates using OAuth 2.0, obtains an access token, and POSTs records to the Creator form endpoint. Creator processes the submission, triggers any Deluge workflow actions, and stores the record in the app database — all without human intervention.
3
Razorpay Payment Gateway Integration
Zoho Creator API integration — Webhook from Razorpay | India-Critical Feature
For Indian businesses collecting payments through a Zoho Creator portal — fee collection portals, training registration apps, vendor payment systems — Razorpay sends a webhook to a Creator endpoint when a payment is completed. Creator processes the webhook, verifies the payment signature, updates the corresponding record status to Paid, and triggers a Zoho Books invoice creation automatically.
This Zoho Creator API integration eliminates the manual reconciliation between payment receipts and application records — a process that costs finance teams hours per week in most Indian businesses without this automation.
4
External MySQL or PostgreSQL Database Connection
Zoho Creator API integration — External Database Connectivity | Plan: Professional+
Zoho Creator can connect directly to external MySQL, PostgreSQL, Microsoft SQL Server, or Oracle databases as data sources. Records from the external database appear in Creator reports and can be filtered, sorted, and displayed to users — without copying data into Creator’s own database.
This is particularly valuable for Indian businesses that have existing operational databases they cannot migrate but want to build modern interfaces on top of. Creator acts as the front-end application layer and permission management system while the source of truth remains the external database.
5
WhatsApp and SMS Notification via API Triggers
Zoho Creator API integration — Outbound API calls from Deluge | India-Specific
When a form is submitted in a Creator app — a service request, a vendor approval, a complaint registration — a Deluge workflow uses Zoho Creator API integration to call a WhatsApp Business API endpoint or SMS gateway API. The assigned team member receives an instant notification with the record details and a deep link back to the Creator record.
This pattern requires a WhatsApp Business API provider (approved BSP). The Deluge invokeurl function makes an HTTP POST to the BSP API with the message template variables pulled from the Creator record. Response handling updates the record with the notification delivery status.
6
Government Portal Data Submission Automation
Zoho Creator API integration — Outbound REST API | India-Specific Use Case
Indian businesses that must submit data regularly to government portals — EPFO, MCA21, GSTN, State GST portals, or Ministry-specific reporting systems — can automate this through Creator. Data collected in Creator forms is validated, formatted to the government portal’s required JSON/XML schema, and submitted via API to the government endpoint on a scheduled basis.
Deluge scheduled functions run at defined intervals (daily, weekly, or on specific dates). They query Creator records matching the submission criteria, format the data payload, call the government API, and log the response (acknowledgement number, error codes) back into the Creator record. Failed submissions trigger email alerts to compliance managers automatically.
7
Multi-System Data Aggregation and Analytics Dashboard
Zoho Creator API integration — Inbound from Multiple Sources | Advanced Pattern
The most sophisticated Zoho Creator API integration pattern aggregates data from multiple external systems into a single Creator dashboard. Sales data from Zoho CRM, financial data from Tally (via Tally’s ODBC connection), field data from a mobile Creator form, and HR data from Zoho People — all merge into one Creator report accessible to management with role-based permissions.
Scheduled Deluge functions pull data from each source at defined intervals, transform it to a unified schema, and write it to Creator’s reporting database. Creator’s built-in charts and dashboards then visualise the aggregated data — creating a management intelligence layer that would otherwise require a dedicated BI tool.

Deluge Scripting — Making Outbound API Calls from Zoho Creator Workflows
Deluge (Data Enriched Language for the Universal Grid Environment) is Zoho’s scripting language that runs inside Creator workflows, form actions, and scheduled tasks. For Zoho Creator API integration, Deluge is the mechanism for making outbound API calls — calling external systems from within Creator.
The core function for outbound API calls is invokeurl. Here is a complete example — calling an external REST API when a form is submitted:
Deluge — Outbound API Call Example (Form Submit Action)
// Prepare the payload
payload = {
"vendor_name": input.Vendor_Name,
"gstin": input.GSTIN,
"contact_email": input.Email,
"created_date": zoho.currentdate
};
// Make the outbound API call
response = invokeurl
[
url: "https://yourapi.example.com/vendors/create"
type: POST
parameters: payload.toString()
headers: {
"Authorization": "Bearer " + zoho.adminuserid,
"Content-Type": "application/json"
}
];
// Parse response and update the Creator record
if (response.get("status") == "success")
{
external_id = response.get("vendor_id");
zoho.creator.update(
"your-app",
"Vendor_Report",
"ID == " + input.ID,
{"External_System_ID": external_id, "Sync_Status": "Synced"}
);
}
else
{
// Log the error
zoho.creator.update(
"your-app",
"Vendor_Report",
"ID == " + input.ID,
{"Sync_Status": "Error: " + response.get("message")}
);
}Deluge also provides built-in functions for direct Zoho product connections — these do not require OAuth tokens or API setup:
zoho.crm.create(module, dataMap)— Create a CRM recordzoho.crm.searchRecords(module, criteria)— Search CRM recordszoho.books.createInvoice(orgId, dataMap)— Create a Zoho Books invoicezoho.mail.sendMail(toAddress, subject, content)— Send an emailzoho.desk.createRecord(module, orgId, dataMap)— Create a support ticket
How to Set Up Zoho Creator API Integration — 6-Step Guide
This is the standard implementation sequence Codroid Labs follows for every Zoho Creator API integration project in India.
1
Create OAuth Client in Zoho Developer Console
Go to api-console.zoho.in and sign in with your Zoho account. Click Add Client. Choose the client type: Server-based Applications for backend systems, Self Client for testing or direct server calls. Enter your application name and authorised redirect URI. Save to generate your Client ID and Client Secret — store these securely, they authenticate all API access.
2
Define OAuth Scopes and Generate Access Token
Choose the minimum required scopes for your integration. For reading data: ZohoCreator.report.READ. For creating records: ZohoCreator.form.CREATE. For updating: ZohoCreator.report.UPDATE. For full access: ZohoCreator.meta.READ and ZohoCreator.data.ALL. Make the authorization request, approve access, exchange the authorization code for an access token and refresh token. Store the refresh token permanently — use it to generate new access tokens as they expire.
3
Find Your App, Form, and Report Link Names
In Zoho Creator, open your application. Go to Settings and then the App tab to find the App Link Name (e.g. vendor-portal). Open each form — the Form Link Name is under the form settings (e.g. Vendor_Registration). For reports, open the report and find the Report Link Name under its settings (e.g. All_Vendors). These link names form the API endpoint URLs. Document them all before making API calls.
4
Test API Calls in Postman Before Coding
In Postman, create a new request. Set the method to GET and enter your Creator report endpoint URL. Add the Authorization header with your access token. Send the request and verify the JSON response structure — note the field names (field link names) exactly as they appear in the response. These are what you must use in POST/PATCH request bodies. Test all CRUD operations before implementing in production code or Deluge scripts.
5
Configure Webhooks for Real-Time Inbound Triggers
In Creator app settings, go to Connections and then Webhooks. Click Add Webhook. Enter the target URL of your external system’s API endpoint. Select the trigger event: On Form Submit, On Record Edit, or On Record Delete. Choose which fields to include in the webhook payload. Save and test using the built-in webhook tester. Creator will POST the selected record data to your endpoint in real time whenever the trigger fires.
6
Write and Test Deluge Scripts for Outbound API Calls
In Creator, open the form or report where you want the outbound API call to trigger. Go to Workflow and add an Action block. Select Deluge Script. Write the invokeurl block as shown in the Deluge section above. Use Creator’s built-in Deluge editor for syntax highlighting and error checking. Test by submitting a form record and verifying the external system received the call. Add error handling to update a status field in the Creator record based on the API response — this creates an audit trail for every outbound API call your integration makes.
Zoho Creator Pricing India — Verified 2026 INR Rates for API Integration
All prices are annual billing, excluding 18% GST. Purchased through Codroid Labs with a GST-compliant invoice (GSTIN: 07AAWFC0815B1ZP, SAC 998315) enabling full input tax credit recovery on your Zoho Creator API integration subscription.
More Guides from Codroid Labs
What Indian Businesses Say After Implementing Zoho Creator API Integration
“We had an SAP system for procurement and a completely separate vendor portal built in Creator. Codroid Labs connected them via the Creator REST API. Now every SAP purchase order automatically creates a vendor task in Creator. The two teams no longer operate in data silos.”
“Our government compliance submission used to take 3 full working days every quarter. Codroid Labs built a Zoho Creator app that collects the data automatically and submits it to the ministry portal via Deluge API calls. The entire process now takes 2 hours and is fully auditable.”
Frequently Asked Questions — Zoho Creator API Integration
What is Zoho Creator API integration?
Zoho Creator API integration is the ability to connect Zoho Creator database applications to external systems using REST APIs, Deluge scripting, and webhooks. Every Creator app auto-generates REST API endpoints for all forms and reports — enabling bidirectional data exchange with ERP systems, payment gateways, government portals, and any third-party platform.
Does Zoho Creator have a REST API?
Yes. Every Zoho Creator form and report automatically generates a REST API endpoint supporting GET, POST, PATCH, and DELETE operations. The base URL format is https://creator.zoho.in/api/v2/{owner}/{app-link}/report/{report-link}. Authentication uses OAuth 2.0 with tokens generated from Zoho’s Developer Console.
What is Deluge scripting in Zoho Creator?
Deluge is Zoho’s proprietary scripting language that runs within Creator workflows. It enables outbound API calls (using the invokeurl function), native Zoho product connections, scheduled automation tasks, data transformation, PDF generation, and email sending — all within the Creator platform without external server deployment.
What is Zoho Creator pricing in India 2026?
Zoho Creator India pricing (annual billing, excluding 18% GST): Starter at Rs.699/user/month, Professional at Rs.1,499/user/month (recommended for most API integration use cases — includes unlimited REST API calls, full Deluge, webhooks, and external database connections), and Ultimate at Rs.2,499/user/month.
Can Zoho Creator connect to an external database?
Yes. Zoho Creator supports direct connections to MySQL, PostgreSQL, Microsoft SQL Server, and Oracle databases on Professional and Ultimate plans. External database records can be read, displayed in Creator reports, and updated from Creator workflows — without migrating data into Creator’s own database.
Build Your Zoho Creator API Integration with Codroid Labs
Codroid Labs designs and builds Zoho Creator applications for Indian businesses — REST API setup, Deluge scripting, external database connections, Razorpay integration, and government portal automation. Fixed price. GST invoice.
Start Free Zoho Creator Trial
Book Free API Integration Consultation
