CData Python Connector for Zoho Books

Build 26.0.9655

CData Python Connector for Zoho Books

Overview

The CData Python Connector for Zoho Books allows developers to write Python scripts with connectivity to Zoho Books. The connector wraps the complexity of accessing Zoho Books data in an interface commonly used by Python connectors to common database systems.

Key Features

  • WHL installation packages that enable installation with "pip install".
  • Supported for Python 3.10 or newer on Windows, Linux, and macOS.
  • Write and execute SQL queries to fetch and update data in Zoho Books.
  • Custom dialect class that enables SQLAlchemy 1.3 and 1.4 to use this connector.

Getting Started

See Getting Started to install the connector to your Python distribution and to create a basic connection to Zoho Books.

Using the Python Connector/Using from Tools

See Using the Connector for examples of executing basic SELECT, INSERT, UPDATE, DELETE, and EXECUTE queries with the module's provided classes.

See Using from Tools to connect Zoho Books data to tools such as Pandas or Petl.

SQLAlchemy ORM

SQLAlchemy can be leveraged to model the tables in Zoho Books with mapped classes. See From SQLAlchemy for instructions for configuring the Python connector with SQLAlchemy.

Pandas

Pandas' DataFrames can be used alongside the connector to generate analytical graphics. See From Pandas for a guide.

Schema Discovery

See Schema Discovery to query the provided system tables, which allows users to discover the available tables, views, and stored procedure, alongside additional information about their columns or parameters.

Advanced Features

Advanced Features details additional features supported by the connector, such as defining user defined views, ssl configuration, remoting, caching, firewall/proxy settings, and advanced logging.

SQL Compliance

See SQL Compliance for a syntax reference and code examples outlining the supported SQL.

Data Model

See Data Model for the available database objects. This section also provides more detailed information on querying specific Zoho Books entities.

Connection String Options

The Connection properties describe the various options that can be used to establish a connection.

CData Python Connector for Zoho Books

Getting Started

Connecting to Zoho Books

For information on the available WHL files for supported environments, and how to install the appropriate file for your Python distribution, see Package Installation.

For information on the module to import, and how to configure the necessary connection properties in a connection string, see Establishing a Connection.

Other available connection properties can be used to configure other aspects of the connector capabilities.

Python Version Support

The CData Python Connector for Zoho Books can be installed and used in Python 3.10 or newer.

Zoho Books Version Support

The connector leverages the Zoho Books API V3 to enable bidirectional access to Zoho Books data.

See Also

  • Using the Connector: Establish connections and query Zoho Books through Python code.
  • From SQLAlchemy: Use SQLAlchemy to establish a connection with dialect URL, and interact with Zoho Books data using mapped classes and Sessions.

CData Python Connector for Zoho Books

Package Installation

Dependencies

The Python connectors require that Python 3.10 or newer be installed.

Installation

The CData Python Connector for Zoho Books is available as a WHL file for Windows, Linux, and Mac. Each connector is built using the Python 3.10 Stable ABI (indicated by the abi3 tag in the filename), so a single wheel supports any Python 3.10 or newer installation — there is no need to match your exact Python minor version. Use the "pip install" command with the appropriate WHL file for your platform.

Windows:

pip install cdata_zohobooks_connector-26.0.9655-cp310-abi3-win_amd64.whl

Linux:

pip install cdata_zohobooks_connector-26.0.9655-cp310-abi3-linux_x86_64.whl

macOS:

pip install cdata_zohobooks_connector-26.0.9655-cp310-abi3-macosx_12_0_arm64.whl

The macOS wheel supports arm64 (Apple Silicon) architectures only on macOS 12 and newer.

Regardless of the environment, certain distributions might require that the "pip3 install" command be used instead, to differentiate from a Python 2 distribution that might exist already. After installation, confirm whether the connector is successfully installed by running the "pip list" command. If "cdata_zohobooks_connector" is present in the list output by the command, then the installation was successful.

Upgrading

When upgrading, "pip install" does not automatically clean up old JRE files. To avoid leftover files that could cause JVM errors, uninstall the previous version before installing the new one.

Licensing

After the installation is complete, a separate step is needed to activate a license for the connector. Among the CData assets in the distribution's site packages, there is an install-license tool that activates this license. From within the distribution's site-packages folder, after navigating to the "cdata/installlic_zohobooks" folder, simply use a command like the below to activate the license. Omitting the <key> argument activates a trial license:

  • Windows:
    ./install-license.exe <key>
  • Linux / Mac:
    ./install-license.sh <key>

Sometimes, file access issues may cause pip to install the connector in a fallback file path that is not the python distribution's main or primary site-packages location. This can make it difficult to find where the connector was installed, and from there, the license activator. In that event, this python script below will print out the full file path of the connector's native file. This file will be stored in the mentioned cdata folder, from which the installlic_zohobooks folder is trivial to find:

import os
import cdata.zohobooks
path = os.path.abspath(cdata.zohobooks.__file__)
print(path)

Uninstallation

If the connector needs to be uninstalled for any reason, do so by running the pip uninstall command, as in the example below:

pip uninstall cdata-zohobooks-connector

CData Python Connector for Zoho Books

Establishing a Connection

The objects available within our connector are accessible from the "cdata.zohobooks" module. To use the module's objects directly:

  1. Import the module as follows:
    import cdata.zohobooks as mod
  2. To establish a connection string, call the connect() method from the connector object using an appropriate connection string, such as:
    mod.connect("InitiateOAuth=GETANDREFRESH;OrganizationId=YourOrganizationId;")

Connecting to Zoho Books

You can refine the exact Zoho Books data retrieved using the following connection properties:

  • Region: the Top Level Domain (TLD) in the Server URL. If your account resides in a domain other than the US, change the region accordingly.
  • OrganizationId (optional): The Id associated with the specific Zoho Books organization that you wish to connect to.
    • If the value of Organization Id is not specified in the connection string, then the connector automatically retrieves all available organizations and selects the first organization Id as the default.

Authenticating to Zoho Books

Zoho Books uses the OAuth authentication standard. The connector supports OAuth authentication for instances of the connector running on your local machine, a web service, or on a headless machine.

Desktop Applications

CData provides an embedded OAuth application that simplifies OAuth desktop Authentication. Alternatively, you can create a custom OAuth application. See Creating a Custom OAuth App for information about creating custom applications and reasons for doing so.

Get and Refresh the OAuth Access Token

After setting the following, you are ready to connect:

  • InitiateOAuth: Set this to GETANDREFRESH. You can use InitiateOAuth to avoid repeating the OAuth exchange and manually setting the OAuthAccessToken.
  • OAuthClientId (custom applications only): Set this to the client Id assigned when you registered your application.
  • OAuthClientSecret (custom applications only): Set this to the client secret assigned when you registered your application.
  • CallbackURL (custom application only): Set this to the redirect URI defined when you registered your application.
When you connect, the connector opens Zoho Books's OAuth endpoint in your default browser. Log in and grant permissions to the application. The connector then completes the OAuth process:
  1. The connector obtains an access token from Zoho Books and uses it to request data.
  2. The OAuth values are saved in the path specified in OAuthSettingsLocation. These values persist across connections.
The connector refreshes the access token automatically when it expires.

Web Applications

When connecting via a Web application, you need to register a custom OAuth application with Zoho Books. You can then use the connector to get and manage the OAuth token values. See Creating a Custom OAuth App for more information.

Get an OAuth Access Token

Set the following connection properties to obtain the OAuthAccessToken:

Then call stored procedures to complete the OAuth exchange:

  1. Call the GetOAuthAuthorizationURL stored procedure. Set the AuthMode input to WEB and the CallbackURL to the Redirect URI you specified in your application settings. The stored procedure returns the URL to the OAuth endpoint.
  2. Navigate to the URL that the stored procedure returned in Step 1. Log in and authorize the web application. You are redirected back to the callback URL.
  3. Call the GetOAuthAccessToken stored procedure. Set the AuthMode input to WEB. Set the Verifier input to the code parameter in the query string of the redirect URI. If necessary, set the Permissions parameter to request custom permissions.

To connect to data, set the OAuthAccessToken connection property to the access token returned by the stored procedure.

Headless Machines

To configure the driver to use OAuth with a user account on a headless machine, you need to authenticate on another device that has an internet browser.

  1. Choose one of two options:
    • Option 1: Obtain the OAuthVerifier value as described in "Obtain and Exchange a Verifier Code" below.
    • Option 2: Install the connector on a machine with an internet browser and transfer the OAuth authentication values after you authenticate through the usual browser-based flow, as described in "Transfer OAuth Settings" below.
  2. Then configure the connector to automatically refresh the access token on the headless machine.

Option 1: Obtain and Exchange a Verifier Code

To obtain a verifier code, you must authenticate at the OAuth authorization URL.

Follow the steps below to authenticate from the machine with an internet browser and obtain the OAuthVerifier connection property.

  1. Choose one of these options:
    • If you are using the Embedded OAuth Application, call the GetOAuthAuthorizationURL stored procedure. Open the URL returned by the stored procedure in a browser.
    • If you are using a custom OAuth application, set the following properties: Then call the GetOAuthAuthorizationURL stored procedure with the appropriate CallbackURL. Open the URL returned by the stored procedure in a browser.
  2. Log in and grant permissions to the connector. You are then redirected to the redirect URI. There will be a parameter called code appended to the redirect URI. Note the value of this parameter. Later you will set this in the OAuthVerifier connection property.
Next, you need to exchange the OAuth verifier code for OAuth refresh and access tokens.

On the headless machine, set the following connection properties to obtain the OAuth authentication values:

  • InitiateOAuth: Set this to REFRESH.
  • OAuthVerifier: Set this to the noted verifier code (the value of the code parameter in the redirect URI).
  • OAuthClientId: (custom applications only) Set this to the client Id in your custom OAuth application settings.
  • OAuthClientSecret: (custom applications only) Set this to the client secret in the custom OAuth application settings.
  • OAuthSettingsLocation: Set this to persist the encrypted OAuth authentication values to the specified file.

Test the connection to generate the OAuth settings file, then re-set the following properties to connect:

  • InitiateOAuth: Set this to REFRESH.
  • OAuthClientId: (custom applications only) Set this to the client Id assigned when you registered your application.
  • OAuthClientSecret: (custom applications only) Set this to the client secret assigned when you registered your application.
  • OAuthSettingsLocation: Set this to the file containing the encrypted OAuth authentication values. Make sure this file gives read and write permissions to the connector to enable the automatic refreshing of the access token.

Option 2: Transfer OAuth Settings

Prior to connecting on a headless machine, you need to install and create a connection with the driver on a device that supports an internet browser. Set the connection properties as described in "Desktop Applications" above.

After completing the instructions in "Desktop Applications", the resulting authentication values are encrypted and written to the path specified by OAuthSettingsLocation. The default filename is OAuthSettings.txt.

Test the connection to generate the OAuth settings file, then copy the OAuth settings file to your headless machine.

On the headless machine, set the following connection properties to connect to data:

  • InitiateOAuth: Set this to REFRESH.
  • OAuthClientId: (custom applications only) Set this to the client Id assigned when you registered your application.
  • OAuthClientSecret: (custom applications only) Set this to the client secret assigned when you registered your application.
  • OAuthSettingsLocation: Set this to the path to the OAuth settings file you copied from the machine with the browser. Make sure this file gives read and write permissions to the connector to enable the automatic refreshing of the access token.

CData Python Connector for Zoho Books

Configuring JNI

Java Native Interface (JNI) is a standard programming interface for writing Java native methods and embedding the Java virtual machine into native applications.

The connector leverages the JNI for improved performance on Mac and Linux.

Configure the Config INI File

The Linux and Mac editions of the Zoho Books python connector are configured with an ini file. This file is used to set several parameters, including JNI behavior. This file is to be located in:

{path_to_distribution_site-packages}/cdata/config.ini

Ensure that any configuration properties you set in the ini file fall under the following section name (adjust the 311 number if you are using an different python version from 3.11):

  • For Linux:
    [zohobooks.cpython-311-x86_64-linux-gnu.so]
  • For Mac:
    [zohobooks.cpython-311-darwin.so]

Configure the JNI connector's behavior by editing the properties in the connector's config.ini file. The connector can be configured as follows:

  • LOGFILE: Set this the same way as the CDATA_LOGFILE envrionment variable below.
  • JAVA_HOME: Configure the path to the JVM library location used to launch the JVM.
  • CLASS_PATH: Use a colon-separated list to configure the paths to the third-party jar libraries.

Configure Environment Variables

Additionally, set the following environment variables:

  • CDATA_JAVA_HOME: Configure the path to the JVM library location used to launch the JVM.
  • CDATA_JVM_OPTIONS: Place JVM options here.
  • CDATA_LOGFILE: Set this in the following scheme: <SCHEME>://<TAG>[|<LEVEL>]

    • SCHEME: The options are STDOUT, FILE.
      • STDOUT: Both the native wrapper and odbc core log into stdout. The Logfile and Verbosity properties can override the behavior of ODBC core.
      • FILE: The native wrapper logs into <FILENAME> while the odbc core logs into <FILENAME>.driver.log. The Logfile and Verbosity properties can override the behavior of ODBC core.
    • TAG
      • For STDOUT, set this to 1. For FILE, set this to the filename.
    • LEVEL
      • Set to one of: FATAL | ERROR | WARNING | INFO | DEBUG

The following are some examples of this syntax:

  • STDOUT://1|DEBUG
  • FILE:///tmp/my_py.log|DEBUG

Custom Logger

The Python connector supports a custom logging mechanism for redirecting log output to any destination, such as a cloud storage service or logging framework. Use setCustomLoggerFactory() to register a factory function that creates a logger instance for each connection.

The factory function receives the context string from the Logfile connection property (the portion after CUSTOM://) and must return an object with a writeLog(verbosity, message) method.

To enable custom logging:

  1. Call setCustomLoggerFactory() with your factory function before opening connections.
  2. Set Logfile to CUSTOM:// followed by a context string to identify the connection.
  3. Set Verbosity to the desired log level.

The following example demonstrates a custom logger factory that creates a separate logger instance per connection:

import cdata.zohobooks as mod
import time

class MyLogger:
    def __init__(self, loggerId):
        self.loggerId = loggerId
    def writeLog(self, verbosity, message):
        print("[MyLogger " + self.loggerId + "] " + message)

def createLogger(context):
    return MyLogger(context[len("MyLoggerId="):])

mod.setCustomLoggerFactory(createLogger)

conn1 = mod.connect("...;Logfile=CUSTOM://MyLoggerId=1;Verbosity=2;")
# do something with conn1
time.sleep(1)  # Wait for logs to flush from conn1

conn2 = mod.connect("...;Logfile=CUSTOM://MyLoggerId=2;Verbosity=2;")
# do something with conn2
time.sleep(1)  # Wait for logs to flush from conn2

CData Python Connector for Zoho Books

Creating a Custom OAuth App

When To Create a Custom OAuth Application

CData embeds OAuth Application Credentials with CData branding that can be used when connecting via a desktop application or headless application.

You may choose to use your own OAuth Application Credentials when you want to

  • control branding of the Authentication Dialog
  • control the redirect URI that the application redirects the user to after the user authenticates
  • customize the permissions that you are requesting from the user

Create and Configure a Custom OAuth App

To obtain an OAuthClientId, OAuthClientSecret, CallbackURL, and OrganizationId you first need to create an application linked to your Zoho Books account. You must then register your application with Zoho's Developer console to get your Client Id and Client Secret.

Follow these steps to create an application linked to your Zoho Books:

  1. To register your application, go to https://accounts.zoho.com/developerconsole.
  2. Click Add Client ID and specify a client Name. l
  3. Fill the required details in the form.

    • Set the Auth Callback URL to https://localhost:33333 or a port of your choice.
    • Choose Client Type as WEB Based/Javascript/Mobile, then click on Create.

  4. In Zoho Books, your business is termed as an organization. If you have multiple businesses, set each of those up as individual organizations. Each organization is an independent Zoho Books Organization with its own organization Id, base currency, time zone, language, contacts, reports, etc.

    1. The parameter organization_id along with the organization Id should be sent in with every API request to identify the organization.
    2. Click Organization Name, on the top right section. Choose the Organization Id from the list of organizations.
    3. If the value of Organization Id is not specified in the connection string, the connector makes a call to get all the available organizations and selects the first organization Id as the default.

  5. After completing the changes the browser prompts you to save your configuration.

After you are done creating a new client, it is displayed on your screen. From there, click More Options > Edit to reveal your newly created application's Client Id and Client Secret. Use these credentials to connect to Zoho Books by setting the following connection properties:

CData Python Connector for Zoho Books

Changelog

General Changes

DateVersionSourceCategoryTypeDescription
2026-05-2726.0.9643GeneralConnectionRemoved
  • Removed the deprecated ReplaceInvalidTypesWithNull connection property. Use the ReplaceInvalidValuesWithNull property instead.
2026-05-2226.0.9638PythonRemoved
  • Remove support for Intel x64 architecture on macOS
2026-05-0726.0.9623GeneralData ModelAdded
  • Added the ColumnCapabilities column to the sys_tablecolumns system table. This column is a bit mask denoting the column's write capabilities.
2026-05-0726.0.9623PythonChanged
  • Updated embedded JRE to jre-17.0.19+10 (Linux x64 / MacOs x64).
2026-04-1526.0.9601GeneralQuery ExecChanged
  • String comparisons using GREATER, LESS, and CONTAINS operators are now case-insensitive by default.
2026-04-0826.0.9594Zoho BooksSecurityChanged
  • TLS 1.3 is now supported by default for HTTP connections.
2026-01-1325.0.9509GeneralAdded
  • Added support for the REGEXP_REPLACE() string function.
2025-12-2125.0.9486PythonAdded
  • Added support for custom loggers in Python connectors on Linux and macOS.
2025-12-0525.0.9470GeneralAdded
  • Added support for the INSERT INTO SELECT statement, with driver-side execution for providers that do not support the operation natively.
2025-10-3025.0.9434PythonChanged
  • Updated embedded JRE to jre-17.0.17+10 (Linux x64 / MacOs x64).
2025-10-0625.0.9410GeneralAdded
  • Support for parsing datetime formats using ".S" and ",S" for milliseconds and nanoseconds.
2025-09-1225.0.9386GeneralAdded
  • Added the IsInsertable, IsUpdateable, and IsDeleteable columns to the sys_tables table.
2025-09-1025.0.9384GeneralChanged
  • All columns in statically defined Views are now reported as read-only.
2025-09-0325.0.9377GeneralChanged
  • Corrected the behavior when IN criteria with NULL values are used in the projection part. It now returns NULL instead of 0. For example, "NULL IN (1,2)" returns "NULL".
2025-09-0125.0.9375GeneralAdded
  • Added support for using the CAST function with infinity values. This function can cast "inf" and "-inf" to DOUBLE, FLOAT, or REAL.
2025-08-2525.0.9368Zoho BooksAdded
  • Added columns to the following tables:
    • BankAccounts: 7
    • BankRules: 7
    • BankTransactions: 6
    • BillDetails: 31
    • ChartOfAccounts: 4
    • ContactDetails: 54
    • CreditNoteDetails: 46
    • CustomerContacts: 4
    • CustomerPaymentDetails: 9
    • EstimateDetails: 64
    • ExpenseDetails: 8
    • InvoiceDetails: 76
    • ItemDetails: 29
    • Journals: 13
    • OpeningBalances: 3
    • Projects: 16
    • PurchaseOrderDetails: 39
    • RecurringBillDetails: 25
    • RecurringExpenseDetails: 8
    • RecurringInvoiceDetails: 32
    • RetainerInvoiceDetails: 13
    • SalesOrderDetails: 58
    • Tasks: 1
    • Taxes: 10
    • TaxGroups: 3
    • TimeEntries: 5
    • Users: 14
    • VendorCreditDetails: 18
    • VendorPaymentDetails: 20
  • Added columns to the following views:
    • BillPayments: 1
    • Bills: 15
    • ChartOfAccountTransactions: 5
    • ContactAddresses: 3
    • Contacts: 16
    • CreditNotes: 11
    • CurrencyExchangeRates: 2
    • CustomerPayments: 15
    • EstimateLineItems: 11
    • Estimates: 13
    • Expenses: 4
    • GetContactStatementEmailContent: 10
    • Invoices: 42
    • Items: 9
    • JournalLineItems: 4
    • Organizations: 23
    • PaymentsReceivedReport: 3
    • ProjectPerformanceSummaryReport: 1
    • PurchaseOrders: 7
    • PurchaseOrdersByVendorReport: 1
    • RecurringExpenses: 3
    • RecurringInvoices: 3
    • RetainerInvoiceLineItems: 1
    • RetainerInvoices: 1
    • SalesByCustomerReport: 2
    • SalesOrders: 12
    • VendorCredits: 1
    • VendorPayments: 15
2025-08-2125.0.9364GeneralChanged
  • Report behavior change:
    • Fixed inconsistent string value comparisons in non-table queries.
    • For example, "SELECT 'A' = 'a'" previously returned false, but it now returns true.
2025-08-1325.0.9356GeneralChanged
  • Changed the maximum number of pages held in memory from 15 to 5 for the page providers to decrease heap usage.
2025-07-2425.0.9336Zoho BooksAdded
  • Added the CreditNoteTemplates, EstimateTemplates, InvoiceTemplates, PurchaseOrderTemplates, and SalesOrderTemplates views.
2025-07-1125.0.9323Zoho BooksAdded
  • Added the Scope connection property.
2025-07-0925.0.9321Zoho BooksChanged
  • Renamed the column IsReverseCharge to IsReverseChargeApplied in the BankRules table.
2025-07-0725.0.9319PythonRemoved
  • Removed the 32-bit version of Windows Python.
2025-07-0725.0.9319Zoho BooksRemoved
  • Removed the AccountsServer connection property, which had previously been deprecated.
2025-07-0225.0.9314PythonRemoved
  • Removed support for Python 3.9.
2025-06-2525.0.9307GeneralRemoved
  • Removed the "ADLS Gen 1" value from the ConnectionType property.
2025-06-2525.0.9307PythonAdded
  • Added support for Python 3.13 in Windows, Linux, and Mac editions.
2025-06-2525.0.9307PythonRemoved
  • Removed support for Python 3.8 as it is no longer supported.
2025-06-2025.0.9302GeneralAdded
  • Created the following functions:
    • TEXT_ENCODE: encodes a string into a different charset (UTF8 → UTF7 and returns a binary array as the result).
    • TEXT_DECODE: takes a binary array and decodes it back into a string when provided the charset.
    • BASE64_ENCODE: takes a binary array and encodes it as a base64 string (varchar).
    • BASE64_DECODE: takes a base 64-encoded string and decodes it into a binary array.
2025-06-1825.0.9300GeneralChanged
  • The internal code for exception handling has been refactored. Exception messages returned during certain error conditions may now have different wording or formatting.
2025-05-2725.0.9278GeneralRemoved
  • Removed the "Proprietary" enum option from ProxyAuthscheme.
2025-05-1225.0.9263PythonChanged
  • Updated embedded JRE to jre-17.0.15+6 (Linux x64 / MacOS x64) and jre-17.0.15+6 (MacOS aarch64).
2025-02-1524.0.9177GeneralAdded
  • Added support for converting unsigned integer types to the nearest signed data type that has enough precision to hold the unsigned value.This is done for JDBC only because it does not have support for unsigned data types.
2024-12-0324.0.9103Zoho BooksAdded
  • Added region property values to support the following Zoho apps:
    • ZohoBooks: China, Canada, Saudi Arabia
    • ZohoCreator: Canada, Saudi Arabia
    • Zoho Inventory: China, Japan, Canada, Saudi Arabia
    • ZohoCRM: Canada
2024-11-2724.0.9097GeneralAdded
  • Added ThreadId to LogModule output. Logfile lines now include the Thread ID associated with the action being performed.
2024-06-0524.0.8922PythonAdded
  • Added support for Python 3.12.
2024-05-3124.0.8917Zoho BooksAdded
  • Added support for multiple columns in fourteen tables.
2024-05-0924.0.8895GeneralChanged
  • The ROUND function previously did not accept negative precision values. That feature has now been restored.
2024-04-0823.0.8864Zoho BooksAdded
  • Added SKU column for BillLineItems, CreditNoteLineItems, EstimateLineItems, InvoiceLineItems, Items, PurchaseOrderLineItems, RecurringBillLineItems, RecurringInvoiceLineItems, SalesOrderLineItems, VendorCreditLineItems views.
2024-03-1523.0.8840GeneralAdded
  • Created a new SQL function called STRING_COMPARE that provides java's String.compare() ability to SQL queries. Returns a number representative of the compared value of two strings
2023-11-2923.0.8733GeneralChanged
  • The ROUND function doesn't accept the negative precision values anymore.
2023-11-2923.0.8733GeneralChanged
  • The returning types of the FDMonth, FDQuarter, FDWeek, LDMonth, LDQuarter, LDWeek functions are changed from Timestamp to Date.
  • The return type of the ABS function will be consistent with the parameter value type.
2023-11-2823.0.8732GeneralAdded
  • Added the HMACSHA256 formatter to allow for secrets to be decoded if it is in base64 format
2023-11-0223.0.8706Zoho BooksRemoved
  • Removed support for INSERT and UPDATE from the OpeningBalances table to match the current API behavior.
2023-10-2623.0.8699Zoho BooksChanged
  • Added columns ProjectCode, LastModifiedTime, UsersWorking, CurrencyId, CustomerEmail, BillingRateFrequency columns for Projects table.
2023-10-1023.0.8683Zoho BooksChanged
  • Updated the data type of PaymentNumber column from Integer to String for CustomerPayments, VendorPayments views and CustomerPaymentDetails, VendorPaymentDetails tables.
2023-08-2923.0.8641PythonAdded
  • Added support for SQLAlchemy 2.0.
2023-08-0723.0.8619Zoho BooksChanged
  • Updated the data type of PaymentNumber column from Integer to String.
2023-07-2623.0.8607Zoho BooksRemoved
  • Removed duplicate columns FromAccountId and TransactionType from BankTransactions table.
  • Removed the duplicate column ContactCompanyName from CommittedStockDetailsReport view.
  • Removed the duplicate column TaxType from Taxes table.
  • Removed the duplicate column TimerStartedAt from TimeEntries table.
2023-07-2623.0.8607Zoho BooksChanged
  • Added the column ContactStatus in CommittedStockDetailsReport view.
2023-06-2023.0.8571GeneralAdded
  • Added the new sys_lastresultinfo system table.
2023-05-1923.0.8539PythonAdded
  • Added support for Python 3.11 on Windows, Linux and Mac.
2023-05-1623.0.8536PythonRemoved
  • Removed support for Python 3.7 on Windows and Linux
2023-05-1223.0.8532Zoho BooksAdded
  • Added Connection String Property Region.
2023-05-0923.0.8529Zoho BooksAdded
  • Added support for CustomModules, CustomModuleFields tables.
  • Added support for CustomModuleFieldDropDownOptions view.
  • Added stored procedure DeleteCustomModuleField.
2023-04-2523.0.8515GeneralRemoved
  • Removed support for the SELECT INTO CSV statement. The core code doesn't support it anymore.
2023-04-0623.0.8496Zoho BooksAdded
  • Added AddAttachment, AddExpenseReceipt, ApproveAnEntity, BillsApplyCredit, ContactEnableOrDisablePaymentReminder, ContactEnablePortalAccess, ContactSendEmail, DeleteAttachment, DeleteImportedStatement, EmailAcreditNote, EmailAnEstimate, EmailAnInvoice, EmailAPurchaseOrder, EmailARetainerInvoice, EmailASalesOrder, EmailMultipleEstimates, EmailMultipleInvoices, ExportReport, ImportCreditCardStatement, InvoiceBulkReminder, InvoiceCancelWriteOFFInvoice,InvoiceDeleteExpenseReceipt, InvoiceEnableOrDisablePaymentReminder, InvoiceWriteOFFInvoice, MaqrkCustomerContactAsPrimary, MarkJournalAsPublished, ModifyBankAccountStatus, ModifyBillStatus, ModifyChartOfAccountStatus, ModifyContactStatus, ModifyCreditNoteStatus, ModifyEstimateStatus, ModifyInvoiceStatus, ModifyItemStatus, ModifyProjectStatus, ModifyPurchaseOrderStatus, ModifyRecurringBillStatus, ModifyRecurringExpenseStatus, ModifyRecurringInvoiceStatus, ModifyRetainerInvoiceStatus, ModifySalesorderStatus, ModifyUserStatus, ModifyVendorCreditStatus, ProjectsInviteAUser, SubmitEntityForApproval, TransactionsUncategorizeACategorizedTransaction, TransactionsUnmatchATransaction, UsersInviteAUser StoredProcedures.
2023-03-2722.0.8486Zoho BooksAdded
  • Added Documents view.
2023-03-2422.0.8483Zoho BooksAdded
  • Added BillDocuments, ContactDocuments, CreditNoteDocuments, InvoiceDocuments, PurchaseOrderDocuments, RetainerInvoiceDocuments, SalesorderDocuments views.
2023-03-2222.0.8481Zoho BooksAdded
  • Added AccountDetailsBaseCurrencyAdjustmentAccounts, AccountDetailsBaseCurrencyAdjustment, BankAccountLastImportedStatement, BankAccountLastImportedStatementTransactions, BankTransactionImportedTransaction, BillPurchaseOrders, BillVendorCredits, ContactRefunds, CustomerPaymentInvoices, GetContactStatementEmailContent, ItemWarehouses, VendorPaymentBills views.
2023-03-1322.0.8472Zoho BooksAdded
  • Added CustomerPaymentsRefund, RecurringBillDetails, TaxGroups, VendorCreditRefund, VendorPaymentsRefund tables.
  • Added RecurringBills, RecurringBillLineItems, Budgets views.
2023-03-1022.0.8469Zoho BooksAdded
  • Added support for accounttransactionsreport, businessperformanceratiosreport, cashflowreport, committedstockdetailsreport, CustomerBalancesReport, GeneralLedgerReport, VendorBalancesReport, StockSummaryReport, SalesBySalespersonReport, SalesByItemReport, SalesByCustomerReport, PurchaseOrdersByVendorReport, ProjectPerformanceSummaryReport, ProductSalesReport, PaymentReceivedReport, MovementOfEquityReport, JournalReport, InventoryValuationReport, InventorySummaryReport
2023-02-0322.0.8434Zoho BooksAdded
  • Added support for Insert, Update and Delete.
  • Added AccountNumber, IsPrimaryAccount, IsPaypalAccount, PaypalType, PaypalEmailAddress, RoutingNumber columns in BankAccounts.
  • Added Criterion as aggregate columns, TargetAccountId, AccountId, ProductType, VatTreatment columns in BankRules.
  • Added CustomFields, Documents, FromAccountTags, ToAccountTags as aggregate columns and FromAccountId, UserId, Date, TransactionType as columns in BankTransactions.
  • Added AccountIds column in BaseCurrencyAdjustments.
  • Added Approvers, CustomFields, Documents, LineItems, Taxes as aggregate column and IsUpdateCustomer, PurchaseOrderIds, PricebookId, PlaceOfSupply, PermitNumber as columns in BillDetails.
  • Added CurrencyId, IncludeInVatReturn, ShowOnDashboard as columns in ChartOfAccounts.
  • Added ContactType, ContactPersons, CustomFields, CreditLimit, CurrencyId, Facebook, IsAddedInPortal columns in ContactDetails.
  • Added AvataxUseCode, AvataxTaxCode, AvataxExemptNo, ContactPersons, CustomFields, IsDraft, LineItems, IgnoreAutoNumberGeneration columns in CreditNoteDetails.
  • Added EnablePortal column in CustomerContacts.
  • Added AmountApplied, CustomFields, ContactPersons, InvoiceId, Invoices columns in CustomerPaymentDetails.
  • Added AvataxUseCode, AvataxExemptNo, ContactPersons, CustomFields columns in EstimateDetailsInternal.
  • Added AcquisitionVatId, CanReclaimVatOnMileage, CustomFields, DestinationOfSupply, Distance, EngineCapacityRange, HSNORSAC, FuelType, GstNo, LineItems, ProductType, PlaceOfSupply, ReverseChargeVatId, ReverseChargeTaxId, SourceOfSupply, VehicleType, VatTreatment, TaxTreatment, Receipt columns in ExpenseDetails.
  • Added ContactPersons, CustomFields, ExpenseId, InvoicedEstimateId, LineItems, SalesorderItemId, TaxId, Send columns in InvoiceDetails
  • Added AvataxUseCode, AvataxTaxCode, HSNORSAC, InventoryAccountId, VendorId, ReorderLevel, InitialStock, InitialStockRate, ItemTaxPreferences columns in itemdetails.
  • Added ExchangeRate, IncludeInVatReturn, IsBasAdjustment, ProductType, VatTreatment, LineItems, TaxExemptionCode, TaxExemptionType columns in Journals.
  • Added Accounts in OpeningBalances.
  • Added CostBudgetAmount, BudgetAmount, BudgetHours, UserId, Tasks, Users columns in Projects
  • Added BillingAddressId, ContactPersons, CustomFields, Documents, DueDate, IsUpdateCustomer, PricebookId, SalesorderId, GstTreatment, VatTreatment, TaxTreatment, GstNo, SourceOfSupply, PlaceOfSupply, DestinationOfSupply, LineItems columns in PurchaseOrderDetails.
  • Added GstNo, SourceOfSupply, DestinationOfSupply, PlaceOfSupply, LineItems, VatTreatment, TaxTreatment, ProductType, AcquisitionVatId, ReverseChargeVatId columns in RecurringExpenseDetails
  • Added AvataxUseCode, AvataxTaxCode, AvataxExemptNo, ContactPersons, Email, ItemId, LineItems, PlaceOfSupply, TaxId, PaymentOptionsPaymentGateways, VatTreatment, GstNo, GstTreatment, TaxTreatment columns in recurringinvoicedetails.
  • Added ContactPersons, PaymentOptionPaymentGateways, LineItems as columns in retainerinvoicedetails.
  • Added AvataxUseCode, AvataxExemptNo, BillingAddressId, ShippingAddressId, ContactPersons, CustomFields, GstNo, GstTreatment, IsUpdateCustomer, LineItems, MerchantId, NotesDefault, PriceBookId, PlaceOfSupply, TaxId, TermsDefault, VatTreatment, TaxTreatment, CanSendInMail, TotalFiles, Doc as columns in SalesOrderDetails.
  • Added BudgetHours column in Tasks.
  • Added TaxType, IsValueAdded, PurchaseTaxExpenseAccountId, UpdateRecurringInvoice, UpdateRecurringExpense, UpdateDraftInvoice, UpdateRecurringBills, UpdateDraftSo, UpdateSubscription, UpdateProject column in Taxes.
  • Added CostRate, TimerStartedAt column in TimeEntries.
  • Added CostRate column in Users.
  • Added CustomFields, Documents, DestinationOfSupply, IsUpdateCustomer, PricebookId, PlaceOfSupply, LineItems columns in VendorCreditDetails.
  • Added Bills, CustomFields columns in VendorPaymentDetails.
2022-12-1422.0.8383GeneralChanged
  • Added the Default column to the sys_procedureparameters table.
2022-11-1522.0.8354PythonChanged
  • Updated embedded JRE to jre8u345-b01(Linux x64 / MacOS x64) and jre-17.0.5+8(MacOS aarch64).
2022-11-0922.0.8348Zoho BooksAdded
  • Added BalanceSheetsReport, ProfitsAndLossesReport, ReportsAccountTransactionsDetails, TaxSummaryReport, TrialBalanceReport.
2022-09-3022.0.8308GeneralChanged
  • Added the IsPath column to the sys_procedureparameters table.
2022-09-2022.0.8298Zoho BooksAdded
  • Added the FileStream parameter to support output streamd on the DownloadAttachment, DownloadExpenseReceipt and DownloadRetainerInvoiceAttachment stored procedures.
  • Added the FileData output parameter and Encoding input parameter to print the response on the DownloadAttachment, DownloadExpenseReceipt and DownloadRetainerInvoiceAttachment stored procedures.
2022-09-1622.0.8294Zoho BooksChanged
  • Changed DataType of Column CreditAmount of table ChartOfAccountTransactions from Integer to Decimal.
2022-05-1822.0.8173PythonAdded
  • Added support for Python 3.10 on Windows, Linux, and Mac
  • Added support for Python 3.9 on Mac
  • Added support for Mac M1
2022-05-1822.0.8173PythonRemoved
  • Removed support for Python 3.6 on Windows and Linux
2022-02-0121.0.8067Zoho BooksAdded
  • Added column DebitAmount to table ChartOfAccountTransactions.
2021-09-0221.0.7915GeneralAdded
  • Added support for the STRING_SPLIT table-valued function in the CROSS APPLY clause.
2021-08-0721.0.7889GeneralChanged
  • Added the KeySeq column to the sys_foreignkeys table.
2021-08-0621.0.7888GeneralChanged
  • Added the new sys_primarykeys system table.
2021-07-2321.0.7874GeneralChanged
  • Updated the Literal Function Names for relative date/datetime functions. Previously, relative date/datetime functions resolved to a different value when used in the projection as opposed to the predicate. For example: SELECT LAST_MONTH() AS lm, Col FROM Table WHERE Col > LAST_MONTH(). Formerly, the two LAST_MONTH() methods would resolve to different datetimes. Now, they will match.
  • As a replacement for the previous behavior, the relative date/datetime functions in the criteria may have an 'L' appended to them. For example: WHERE col > L_LAST_MONTH(). This will continue to resolve to the same values that were previously calculated in the criteria. Note that the "L_" prefix will only work in the predicate - it not available for the projection.
2021-07-1221.0.7863Zoho BooksAdded
  • Added the connection property RowScanDepth. It is the maximum number of rows to scan for the custom fields columns available in the table. The default value is 200.
2021-04-2521.0.7785GeneralAdded
  • Added support for handling client side formulas during insert / update. For example: UPDATE Table SET Col1 = CONCAT(Col1, " - ", Col2) WHERE Col2 LIKE 'A%'
2021-04-2321.0.7783GeneralChanged
  • Updated how display sizes are determined for varchar primary key and foreign key columns so they will match the reported length of the column.
2021-04-1621.0.7776GeneralAdded
  • Non-conditional updates between two columns is now available to all drivers. For example: UPDATE Table SET Col1=Col2
2021-04-1621.0.7776GeneralChanged
  • Reduced the length to 255 for varchar primary key and foreign key columns.
2021-04-1621.0.7776GeneralChanged
  • Updated implicit and metadata caching to improve performance and support for multiple connections. Old metadata caches are not compatible - you need to generate new metadata caches if you are currently using CacheMetadata.
2021-04-1621.0.7776GeneralChanged
  • Updated index naming convention to avoid duplicates.

CData Python Connector for Zoho Books

Using the Connector

This section provides a walk-through for writing Zoho Books data access code in Python script.

For more information on the available data source entities and how to query them with SQL, see Data Model. For the SQL syntax, see SQL Compliance.

Connecting from Code

For information on how to deploy the connector and configure the connection to Zoho Books, see Package Installation and Establishing a Connection.

For information on how to connect with the zohobooks.connector module and its related classes, see Connecting.

Executing SQL

The connection's cursor object is used to directly execute SQL queries. For information on how to execute SELECT statements and process the returned result sets, see Querying Data. For information on to modify the data in Zoho Books with INSERT, UPDATE, and DELETE statements, see Modifying Data .

Executing Stored Procedures

You can call stored procedures by using the EXECUTE statement. For further information, see Calling Stored Procedures.

CData Python Connector for Zoho Books

Connecting

Connecting with the cdata.zohobooks Module:

The connector's module is used directly to establish a connection with the data source. It does this by using a connection string as its argument. For example:
import cdata.zohobooks as mod
conn = mod.connect("InitiateOAuth=GETANDREFRESH;OrganizationId=YourOrganizationId;")

Once the connection is created, you can use it to execute subsequent SQL queries.

CData Python Connector for Zoho Books

Querying Data

After connecting as described in Connecting, you can use the open connection to execute SQL statements.

Executing Queries

To execute SQL statements that return data, use the execute() method. Once a query is executed, the result set is fetched from the cursor. This result set can then be iterated over to process the records individually.

For example:

cur = conn.execute("SELECT InvoiceId, InvoiceNumber FROM INVOICES")
rs = cur.fetchall()
for row in rs:
	print(row)

Parameterized Queries

Various Python collections, such as arrays and tuples, can act as additional arguments for the execute() method. This enables you to parameterize the queries executed and help to prevent SQL Injection.

For example:

cmd = "SELECT InvoiceId, InvoiceNumber FROM INVOICES WHERE CustomerName = ?"
params = ["NewTech Industries"]
cur = conn.execute(cmd, params)
rs = cur.fetchall()
for row in rs:
	print(row)

CData Python Connector for Zoho Books

Modifying Data

The connection is also used to issue INSERT, UPDATE, and DELETE commands to the data source. Parameters can be used with these statements if desired.

Note that the connector does not support transactions. As with normal write operations, all SQL statements executed by this connector affect the data source immediately. Call the connection's commit() method following the execution.

Insert

The following example adds a new record to the table:
cmd = "INSERT INTO INVOICES (InvoiceId, InvoiceNumber) VALUES (?, ?)"
params = ["Jon Doe", "John"]
cur = conn.execute(cmd, params)
print("Records affected: ", cur.rowcount)

Update

The following example modifies an existing record in the table:
cmd = "UPDATE INVOICES SET InvoiceNumber = ? WHERE Id = ?"
params = ["John", "1894553000000026007"]
cur = conn.execute(cmd, params)
print("Records affected: ", cur.rowcount)

Delete

The following example removes an existing record from the table:

cmd = "DELETE FROM INVOICES WHERE Id = ?"
params = ["1894553000000026007"]
cur = conn.execute(cmd, params)
print("Records affected: ", cur.rowcount)

CData Python Connector for Zoho Books

Calling Stored Procedures

You can execute stored procedures using either the execute() or callproc() method of the connection.

Calling Stored Procedures Using Execute()

When you call stored procedures by issuing EXECUTE commands, the stored procedure arguments are parameterized. For example:
cmd = "EXECUTE ExpenseReceipt ExpenseId = ?"
params = ["1894853000000096001"]
conn.execute(cmd, params)

Calling Stored Procedures Using Callproc()

When you call stored procedured by issuing the callproc() method, the stored procedure arguments are a procedure name and a list of parameters. For example:
cur = conn.cursor()
params = ["1894853000000096001"]
cur.callproc("ExpenseReceipt", params)

CData Python Connector for Zoho Books

Using from Tools

The connector is integrated with other tools and packages within Python.

Python Integration Guides

The following sections show how to create and use connections with the connector in common packages in Python:

Complete List of Zoho Books Integration Quickstarts

For information on connecting from other applications, see Zoho Books integration guides.

CData Python Connector for Zoho Books

From SQLAlchemy

The CData Python Connector for Zoho Books includes a Dialect class that enables integration with SQLAlchemy. Bear in mind that several aspects of connector functionality are not currently supported in SQLAlchemy 2.0 or above. If necessary, downgrade SQLAlchemy to version 1.4 or 1.3 before using this connector.

The following sections detail various aspects of this integration:

Connecting From SQLAlchemy

To construct a URL with which SQLAlchemy loads and uses the appropriate connector automatically, see Connecting

Reflecting Metadata With SQLAlchemy

To learn how to model Zoho Books tables with mapped classes, see Reflecting Metadata.

Querying Data From SQLAlchemy

To learn how to use mapped classes to query the associated tables, see Querying Data.

Modifying Data From SQLAlchemy

The connector provides INSERT/UPDATE/DELETE functionality in SQLAlchemy. To learn how to call the session's execute() method to affect the data in the data source, see Modifying Data.

CData Python Connector for Zoho Books

Connecting

Connecting With a Dialect URL

Establishing a connection using SQLAlchemy requires a specific URL format.
from sqlalchemy import create_engine
engine = create_engine("zohobooks:///?InitiateOAuth=GETANDREFRESH;OrganizationId=YourOrganizationId;")

For SQLAlchemy 2.0, the dialect name is zohobooks_2. To establish a connection, use the following URL format:

from sqlalchemy import create_engine
engine = create_engine("zohobooks_2:///?InitiateOAuth=GETANDREFRESH;OrganizationId=YourOrganizationId;")

CData Python Connector for Zoho Books

Reflecting Metadata

SQLAlchemy can act as an Object-relational Map (ORM). This enables you to treat records of a database table as instantiable records. To leverage this functionality, you must reflect the underlying metadata in one of the following ways.

Note: The following examples employ SQLAlchemy 1.4.

Modeling Data Using a Mapping Class

Use "sqlalchemy.ext.declarative.declarative_base" to declare a mapping class for the table you wish to model in the ORM. A known table in the data model is modeled either partially or completely, as shown in the following example:
from sqlalchemy.ext.declarative import declarative_base
Base = declarative_base()
class INVOICES(Base):
	__tablename__ = "INVOICES"
	Id = Column(String, primary_key=True)
	InvoiceId = Column(String)
	InvoiceNumber = Column(String)

Automatically Reflecting Metadata

Rather than mapping tables manually, SQLAlchemy can discover the metadata for one or more tables automatically. To accomplish this across the entire data model, use automap_base:
from sqlalchemy import MetaData
from sqlalchemy.ext.automap import automap_base
meta = MetaData()
abase = automap_base(metadata=meta)
abase.prepare(autoload_with=engine)
INVOICES = abase.classes.INVOICES

You can also reflect a single table with an inspector. When reflecting this way, providing a list of specific columns to map is optional:

from sqlalchemy import MetaData, Table
from sqlalchemy import inspect
meta = MetaData()
insp = inspect(engine)
INVOICES_table = Table("INVOICES", meta)
insp.reflect_table(INVOICES_table, ["Id","InvoiceNumber"])

CData Python Connector for Zoho Books

Querying Data

After you use the steps in Connecting to connect, and use one of the methods in Reflecting Metadata to reflect some of the metadata, you can use a session object to query data.

Querying Data Using the Query Method

If the mapping class has been prepared, use it with a session object to query the data source. After binding the engine to the session, provide the mapping class to the session's query method.

For example:

engine = create_engine("zohobooks:///?InitiateOAuth=GETANDREFRESH;OrganizationId=YourOrganizationId;")
factory = sessionmaker(bind=engine)
session = factory()
for instance in session.query(INVOICES).filter_by(CustomerName="NewTech Industries"):
	print("Id: ", instance.Id)
	print("InvoiceId: ", instance.InvoiceId)
	print("InvoiceNumber: ", instance.InvoiceNumber)
	print("---------")

Querying Data Using the Execute Method

The session object can also run the query with the execute() method alongside the appropriate Table object. Assuming you have an active session, the following is just as viable:
INVOICES_table = INVOICES.metadata.tables["INVOICES"]
for instance in session.execute(INVOICES_table.select().where(INVOICES_table.c.CustomerName == "NewTech Industries")):
	print("Id: ", instance.Id)
	print("FullName: ", instance.Name)
	print("City: ", instance.BillingCity)
	print("---------")

CData Python Connector for Zoho Books

Executing JOINs

Implicit Joining

If mapped classes of related Zoho Books objects have a singular foreign key relationship, the classes are implicitly joined. After importing the necessary objects, a relationship is established between your two mapped classes, as in the example below:
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy import Column, String, Integer, DateTime, ForeignKey
from sqlalchemy.orm import sessionmaker, relationship

Base = declarative_base()
class Contact(Base):
	__tablename__ = "Contact"
	Id = Column(Integer, primary_key=True)
	Name = Column(String)
	Email = Column(String)
	BirthDate = Column(DateTime)
	AccountId = Column(String, ForeignKey("Account.Id"))
	Account_Link = relationship("Account", back_populates="Contact_Link")

class Account(Base):
	__tablename__ = "Account"
	Id = Column(String, primary_key=True)
	Name = Column(String)
	BillingCity = Column(String)
	NumberOfEmployees = Column(Integer)
	Contact_Link = relationship("Contact", order_by=Contact.Id, back_populates="Account_Link")

Once the relationship is established, the tables are queried simultaneously using the session's query() method. For example:

rs = session.query(Account, Contact).filter(Account.Id == Contact.AccountId)
for Ac, Ct in rs:
  print("AccountId: ", Ac.Id)
  print("AccountName: ", Ac.Name)
  print("ContactId: ", Ct.Id)
  print("ContactName: ", Ct.Name)

Other Join Forms

In situations where mapped classes have either no foreign keys or multiple foreign keys, you may need different forms of the JOIN query to accommodate them. Using the earlier classes as examples, the following JOIN queries are possible as well:
  • Explicit condition (necessary if there are no foreign keys in your mapped classes):
    rs = session.query(Account, Contact).join(Contact, Account.Id == Contact.AccountId)
    for Ac, Ct in rs:
  • Left-to-right relationship:
    rs = session.query(Account, Contact).join(Account.Contact_Link)
    for Ac, Ct in rs:
  • Left-to-right relationship with explicit target:
    rs = session.query(Account, Contact).join(Contact, Account.Contact_Link)
    for Ac, Ct in rs:
  • String form of a left-to-right relationship:
    rs = session.query(Account, Contact).join("Contact_Link")
    for Ac, Ct in rs:

CData Python Connector for Zoho Books

Other SQL Clauses

SQLAlchemy ORM also exposes support for other clauses in SQL, such as ORDER BY, GROUP BY, LIMIT, and OFFSET. All of these are supported by this connector:

ORDER BY

The following example sorts by a specified column using the session object's query() method:
rs = session.query(INVOICES).order_by(INVOICES.AnnualRevenue)
for instance in rs:
	print("Id: ", instance.Id)
	print("InvoiceId: ", instance.InvoiceId)
	print("InvoiceNumber: ", instance.InvoiceNumber)
	print("---------")

You can also use the session object's execute() method perform an ORDER BY. For example:

rs = session.execute(INVOICES_table.select().order_by(INVOICES_table.c.AnnualRevenue))
for instance in rs:

GROUP BY

The following example uses the session object's query() method to group records with a specified column:
rs = session.query(func.count(INVOICES.Id).label("CustomCount"), INVOICES.InvoiceId).group_by(INVOICES.InvoiceId)
for instance in rs:
	print("Count: ", instance.CustomCount)
	print("InvoiceId: ", instance.InvoiceId)
	print("---------")

You can also use the session object's execute() method to perform a GROUP BY:

rs = session.execute(INVOICES_table.select().with_only_columns([func.count(INVOICES_table.c.Id).label("CustomCount"), INVOICES_table.c.InvoiceId]).group_by(INVOICES_table.c.InvoiceId))
for instance in rs:

LIMIT and OFFSET

The following example uses the session object's query() method to skip the first 100 records and fetch the following 25:
rs = session.query(INVOICES).limit(25).offset(100)
for instance in rs:
	print("Id: ", instance.Id)
	print("InvoiceId: ", instance.InvoiceId)
	print("InvoiceNumber: ", instance.InvoiceNumber)
	print("---------")

You can also use the session object's execute() method to set a LIMIT or OFFSET:

rs = session.execute(INVOICES_table.select().limit(25).offset(100))
for instance in rs:

CData Python Connector for Zoho Books

Aggregate Functions

Certain aggregate functions can also be used within SQLAlchemy by using the func module.

To import this module, execute:

from sqlalchemy.sql import func

Once func is imported, the following aggregate functions are available:

COUNT

The following example counts the number of records in a set of groups using the session object's query() method.
rs = session.query(func.count(INVOICES.Id).label("CustomCount"), INVOICES.InvoiceId).group_by(INVOICES.InvoiceId)
for instance in rs:
	print("Count: ", instance.CustomCount)
	print("InvoiceId: ", instance.InvoiceId)
	print("---------")

You can also execute COUNT using the session object's execute() method:

rs = session.execute(INVOICES_table.select().with_only_columns([func.count(INVOICES_table.c.Id).label("CustomCount"), INVOICES_table.c.InvoiceId])group_by(INVOICES_table.c.InvoiceId))
for instance in rs:

SUM

This example calculates the cumulative amount of a numeric column in a set of groups.

rs = session.query(func.sum(INVOICES.AnnualRevenue).label("CustomSum"), INVOICES.InvoiceId).group_by(INVOICES.InvoiceId)
for instance in rs:
	print("Sum: ", instance.CustomSum)
	print("InvoiceId: ", instance.InvoiceId)
	print("---------")

You can also invoke SUM using the session object's execute() method.

rs = session.execute(INVOICES_table.select().with_only_columns([func.sum(INVOICES_table.c.AnnualRevenue).label("CustomSum"), INVOICES_table.c.InvoiceId]).group_by(INVOICES_table.c.InvoiceId))
for instance in rs:

AVG

This example uses the session object's query() method to calculate the average amount of a numeric column in a set of groups:
rs = session.query(func.avg(INVOICES.AnnualRevenue).label("CustomAvg"), INVOICES.InvoiceId).group_by(INVOICES.InvoiceId)
for instance in rs:
	print("Avg: ", instance.CustomAvg)
	print("InvoiceId: ", instance.InvoiceId)
	print("---------")

You can also use the session object's execute() method to invoke AVG:

rs = session.execute(INVOICES_table.select().with_only_columns([func.avg(INVOICES_table.c.AnnualRevenue).label("CustomAvg"), INVOICES_table.c.InvoiceId]).group_by(INVOICES_table.c.InvoiceId))
for instance in rs:

MAX and MIN

This example finds the maximum value and minimum value of a numeric column in a set of groups.
rs = session.query(func.max(INVOICES.AnnualRevenue).label("CustomMax"), func.min(INVOICES.AnnualRevenue).label("CustomMin"), INVOICES.InvoiceId).group_by(INVOICES.InvoiceId)
for instance in rs:
	print("Max: ", instance.CustomMax)
	print("Min: ", instance.CustomMin)
	print("InvoiceId: ", instance.InvoiceId)
	print("---------")

You can also use the session object's execute() method to invoke MAX and MIN:

rs = session.execute(INVOICES_table.select().with_only_columns([func.max(INVOICES_table.c.AnnualRevenue).label("CustomMax"), func.min(INVOICES_table.c.AnnualRevenue).label("CustomMin"), INVOICES_table.c.InvoiceId]).group_by(INVOICES_table.c.InvoiceId))
for instance in rs:

CData Python Connector for Zoho Books

Modifying Data

Commands can be executed individually by the session with a call to "execute()".

Obtaining the Table Object

The query supplied to this method is constructed using the associated Table object of a mapped class. This Table object is obtained from the mapped class's metadata field, as below:

INVOICES_table = INVOICES.metadata.tables["INVOICES"]

Once the table object is obtained, the write operations are executed in the following ways. The queries are executed immediately without the need for a call to "commit()":

Insert

The following example adds a new record to the table:

session.execute(INVOICES_table.insert(), {"InvoiceId": "Jon Doe", "InvoiceNumber": "John"})

Update

The following example modifies an existing record in the table:

session.execute(INVOICES_table.update().where(INVOICES_table.c.Id == "1894553000000026007").values(InvoiceId="Jon Doe", InvoiceNumber="John"))

Delete

The following example removes an existing record from the table:

session.execute(INVOICES_table.delete().where(INVOICES_table.c.Id == "1894553000000026007"))

CData Python Connector for Zoho Books

From Pandas

When combined with the connector, Pandas can be used to generate data frames that contain your Zoho Books data. Once created, a data frame can be passed to various other Python packages.

Connecting

Pandas relies on an SQLAlchemy engine to execute queries. Before you can use Pandas you must import it:
import pandas as pd
from sqlalchemy import create_engine
engine = create_engine("zohobooks:///?InitiateOAuth=GETANDREFRESH;OrganizationId=YourOrganizationId;")

Querying Data

In Pandas, SELECT queries are provided in a call to the read_sql() method, alongside a relevant connection object. Pandas executes the query on that connection, and returns the results in the form of a data frame, which can be used for a variety of purposes.
df = pd.read_sql("""
	SELECT
	   InvoiceId,
	   InvoiceNumber,
     $exNumericCol;
	FROM INVOICES;""", engine)
print(df)

Modifying Data

To insert new records into a table, create a new data frame, and define its fields accordingly. When that is done, call to_sql() on the data frame to perform the INSERT operation with the connector, as shown in the example below. You must set the "if _exists" argument to "append" to prevent Pandas from attempting building the table from scratch. To prevent Pandas from writing the data frame index as a column, set index=False.
df = pd.DataFrame({"InvoiceId": ["Jon Doe"], "InvoiceNumber": ["John"]})
df.to_sql("INVOICES", con=engine, if_exists="append", index=False)

CData Python Connector for Zoho Books

From Matplotlib

Matplotlib contains a number of tools that can graphically model Zoho Books data after being fed a data frame From Pandas.

Using PyPlot

Before any Matplotlib tool, such as pyplot, can be used, it must be imported:
from matplotlib import pyplot as plt

Once a Pandas data frame is obtained, it can be used to create a plot visualizing Zoho Books data. For example, the following plot generates and displays a bar graph relating InvoiceId and AnnualRevenue values:

df.plot(kind="bar", x="InvoiceId", y=["AnnualRevenue"])
plt.show()

CData Python Connector for Zoho Books

From Petl

The connector can be used to create ETL applications and pipelines for CSV data in Python using Petl.

Install Required Modules

Install the Petl modules using the pip utility.
pip install petl

Connecting

After you import the modules, including the CData Python Connector for Zoho Books, you can use the connector's connect function to create a connection using a valid Zoho Books connection string. If you prefer not to use a direct connection, you can use a SQLAlchemy engine.
import petl as etl
import cdata.zohobooks as mod
cnxn = mod.connect("InitiateOAuth=GETANDREFRESH;OrganizationId=YourOrganizationId;")

Extract, Transform, and Load the Zoho Books Data

Create a SQL query string and store the query results in a DataFrame.
sql = "SELECT	InvoiceId, InvoiceNumber FROM INVOICES "
table1 = etl.fromdb(cnxn,sql)

Loading Data

With the query results stored in a DataFrame, you can load your data into any supported Petl destination. The following example loads the data into a CSV file.
etl.tocsv(table1,'output.csv')

Modifying Data

Insert new rows into Zoho Books tables using Petl's appenddb function.
table1 = [['InvoiceId','InvoiceNumber'],['Jon Doe','John']]
etl.appenddb(table1,cnxn,'INVOICES')

CData Python Connector for Zoho Books

Schema Discovery

The extension supports schema discovery by using SQL queries to available System Tables.

Using SQL

The following sections describe the discovery of metadata through several System Tables:

CData Python Connector for Zoho Books

Tables and Views

The connector possesses system tables that are used to discover the tables and views available in the data model. Of these system tables, "sys_tables" and "sys_views" are used to fetch information about the available tables and views respectively:

Tables


import cdata.zohobooks as mod
conn = mod.connect("InitiateOAuth=GETANDREFRESH;OrganizationId=YourOrganizationId;")
cur = conn.cursor()
cmd = "SELECT * FROM sys_tables"
cur.execute(cmd)
rs = cur.fetchall()
for row in rs:
	print(row)

Views


import cdata.zohobooks as mod
conn = mod.connect("InitiateOAuth=GETANDREFRESH;OrganizationId=YourOrganizationId;")
cur = conn.cursor()
cmd = "SELECT * FROM sys_views"
cur.execute(cmd, params)
rs = cur.fetchall()
for row in rs:
	print(row)

CData Python Connector for Zoho Books

Columns

The available columns for any given table are fetched from a system table called "sys_tablecolumns". A specific table name is provided in the WHERE criteria to restrict the table from which the column information is fetched:

import cdata.zohobooks as mod
conn = mod.connect("InitiateOAuth=GETANDREFRESH;OrganizationId=YourOrganizationId;")
cur = conn.cursor()
cmd = "SELECT * FROM sys_tablecolumns WHERE TableName = 'INVOICES'"
cur.execute(cmd)
rs = cur.fetchall()
for row in rs:
	print(row)

CData Python Connector for Zoho Books

Procedures

Procedures

A system table called "sys_procedures" is queried to obtain the available stored procedures that are executed:
import cdata.zohobooks as mod
conn = mod.connect("InitiateOAuth=GETANDREFRESH;OrganizationId=YourOrganizationId;")
cur = conn.cursor()
cmd = "SELECT * FROM sys_procedures"
cur.execute(cmd)
rs = cur.fetchall()
for row in rs:
	print(row)

Parameters

The input parameters of any stored procedure are similarly obtained from the "sys_procedureparameters" system table:
import cdata.zohobooks as mod
conn = mod.connect("InitiateOAuth=GETANDREFRESH;OrganizationId=YourOrganizationId;")
cur = conn.cursor()
cmd = "SELECT * FROM sys_procedureparameters WHERE ProcedureName = 'ExpenseReceipt'"
cur.execute(cmd)
rs = cur.fetchall()
for row in rs:
	print(row)

CData Python Connector for Zoho Books

Advanced Features

This section details a selection of advanced features of the Zoho Books connector.

User Defined Views

The connector supports the use of user defined views, virtual tables whose contents are decided by a pre-configured user defined query. These views are useful when you cannot directly control queries being issued to the drivers. For an overview of creating and configuring custom views, see User Defined Views .

SSL Configuration

Use SSL Configuration to adjust how connector handles TLS/SSL certificate negotiations. You can choose from various certificate formats;. For further information, see the SSLServerCert property under "Connection String Options" .

Firewall and Proxy

Configure the connector for compliance with Firewall and Proxy, including Windows proxies and HTTP proxies. You can also set up tunnel connections.

Caching Data

Caching Data enables faster access to data and reduces the number of API calls, improving performance. The connector supports a simple caching model where multiple connections can also share the cache over time. When configuring the cache connection, you can specify automatic or explicit data caching.

Query Processing

The connector offloads as much of the SELECT statement processing as possible to Zoho Books and then processes the rest of the query in memory (client-side).

For further information, see Query Processing.

Logging

For an overview of configuration settings that can be used to refine CData logging, see Logging. Only two connection properties are required for basic logging, but there are numerous features that support more refined logging, which enables you to use the LogModules connection property to specify subsets of information to be logged.

Exception Handling

For an overview of how exceptions are reported and the components of an exception, see Exception Handling.

CData Python Connector for Zoho Books

User Defined Views

The CData Python Connector for Zoho Books supports the use of user defined views: user-defined virtual tables whose contents are decided by a preconfigured query. User defined views are useful in situations where you cannot directly control the query being issued to the driver; for example, when using the driver from a tool.

Use a user defined view to define predicates that are always applied. If you specify additional predicates in the query to the view, they are combined with the query already defined as part of the view.

There are two ways to create user defined views:

  • Create a JSON-formatted configuration file defining the views you want.
  • DDL statements.

Defining Views Using a Configuration File

User defined views are defined in a JSON-formatted configuration file called UserDefinedViews.json. The connector automatically detects the views specified in this file.

You can also have multiple view definitions and control them using the UserDefinedViews connection property. When you use this property, only the specified views are seen by the connector.

This user defined view configuration file is formatted so that each root element defines the name of a view, and includes a child element, called query, which contains the custom SQL query for the view.

For example:

{
	"MyView": {
		"query": "SELECT * FROM INVOICES WHERE MyColumn = 'value'"
	},
	"MyView2": {
		"query": "SELECT * FROM MyTable WHERE Id IN (1,2,3)"
	}
}
Use the UserDefinedViews connection property to specify the location of your JSON configuration file. For example:
"UserDefinedViews", "C:\\Users\\yourusername\\Desktop\\tmp\\UserDefinedViews.json"

Defining Views Using DDL Statements

The connector is also capable of creating and altering the schema via DDL Statements such as CREATE LOCAL VIEW, ALTER LOCAL VIEW, and DROP LOCAL VIEW.

Create a View

To create a new view using DDL statements, provide the view name and query as follows:

CREATE LOCAL VIEW [MyViewName] AS SELECT * FROM Customers LIMIT 20;

If no JSON file exists, the above code creates one. The view is then created in the JSON configuration file and is now discoverable. The JSON file location is specified by the UserDefinedViews connection property.

Alter a View

To alter an existing view, provide the name of an existing view alongside the new query you would like to use instead:

ALTER LOCAL VIEW [MyViewName] AS SELECT * FROM Customers WHERE TimeModified > '3/1/2020';

The view is then updated in the JSON configuration file.

Drop a View

To drop an existing view, provide the name of an existing schema alongside the new query you would like to use instead.

DROP LOCAL VIEW [MyViewName]

This removes the view from the JSON configuration file. It can no longer be queried.

Schema for User Defined Views

In order to avoid a view's name clashing with an actual entity in the data model, user defined views are exposed in the UserViews schema by default. To change the name of the schema used for UserViews, reset the UserViewsSchemaName property.

Working with User Defined Views

For example, a SQL statement with a user defined view called UserViews.RCustomers only lists customers in Raleigh:
SELECT * FROM Customers WHERE City = 'Raleigh';
An example of a query to the driver:
SELECT * FROM UserViews.RCustomers WHERE Status = 'Active';
Resulting in the effective query to the source:
SELECT * FROM Customers WHERE City = 'Raleigh' AND Status = 'Active';
That is a very simple example of a query to a user defined view that is effectively a combination of the view query and the view definition. It is possible to compose these queries in much more complex patterns. All SQL operations are allowed in both queries and are combined when appropriate.

CData Python Connector for Zoho Books

SSL Configuration

Customizing the SSL Configuration

By default, the connector attempts to negotiate TLS with the server. The server certificate is validated against the default system trusted certificate store. You can override how the certificate gets validated using the SSLServerCert connection property.

To specify another certificate, see the SSLServerCert connection property.

CData Python Connector for Zoho Books

Firewall and Proxy

Connecting Through a Firewall or Proxy

HTTP Proxies

Note: The connector uses the system proxy settings by default, without further configuration needed. If you want to connect to other proxies, set ProxyAutoDetect to False and read further.

To authenticate to an HTTP proxy, set the following:

  • ProxyServer: the hostname or IP address of the proxy server that you want to route HTTP traffic through.
  • ProxyPort: the TCP port that the proxy server is running on.
  • ProxyAuthScheme: the authentication method the connector uses when authenticating to the proxy server.
  • ProxyUser: the username of a user account registered with the proxy server.
  • ProxyPassword: the password associated with the ProxyUser.

Other Proxies

Set the following properties:

CData Python Connector for Zoho Books

Caching Data

Caching Data

Caching data provides several benefits, including faster access to data and reducing the number of API calls, which improve performance. The connector supports a simple caching model where multiple connections can also share the cache over time. You can enable and configure caching features by setting the necessary connection properties.

Contents

The sections in this chapter detail the connector's caching functionality and link to the corresponding connection properties, as well as SQL statements.

Configuring the Cache Connection

Configuring the Cache Connection describes the properties that you can set when configuring the cache database.

Caching Metadata

Caching Metadata describes the CacheMetadata property. This property determines whether or not to cache the table metadata to a file store.

Automatically Caching Data

Automatically Caching Data describes how the connector automatically refreshes the cache when the AutoCache property is set.

Explicitly Caching Data

Explicitly Caching Data describes how you can decide what data is stored in the cache and when it is updated.

Data Type Mapping

Data Type Mapping shows the mappings between the data types configured in the schema and the data types in the database.

CData Python Connector for Zoho Books

Configuring the Cache Connection

Configuring the Caching Database

This section describes the properties for caching data to the persistent store of your choice.

CacheLocation

The CacheLocation property species the path to a file-system-based database. When caching is enabled, a file-system-based database is used by default. If CacheLocation is not specified, this database is stored at the path in Location. If neither of these connection properties are specified, the connector uses a platform-dependent default location.

CacheConnection

The CacheConnection property specifies a database driver and the connection string to the caching database.

CacheDriver and CacheProvider

Both the CacheDriver and CacheProvider properties are supported. Each specifies a database driver and the connection string to the caching database. CacheDriver is designed for Linux and MacOS; CacheProvider is Windows-based.

CData Python Connector for Zoho Books

Caching Metadata

This section describes how to enable caching metadata and how to update the metadata cache.

Before being able to query data, the connector requires relevant metadata to be retrieved. By default, metadata is cached in memory and shared across connections. But if you want to persist across processes, or if metadata requests are expensive, the solution is to cache the metadata to disk.

Enable Caching Metadata

To enable caching of metadata, set CacheMetadata = true and see Configuring the Cache Connection for instructions on how to configure your connection string. The connector caches the metadata the first time it is needed and uses the metadata cache for subsequent requests.

Update the Metadata Cache

Because metadata is cached, changes to metadata on the live source, for example, adding or removing a column or attribute, are not automatically reflected in the metadata cache. To get updates to the live metadata, you need to delete or drop the cached data.

CData Python Connector for Zoho Books

Automatically Caching Data

Automatically caching data is useful when you do not want to rebuild the cache for each query. When you query data for the first time, the connector automatically initializes and builds a cache in the background. When AutoCache = true, the connector uses the cache for subsequent query executions, resulting in faster response times.

If replication is enabled, the data is generated once and then copied to local and cloud data stores. With incremental updates, the connector achieves a performance advantage over dropping the cached tables and retrieving the entire table again on every refresh. With iterative updates, the connector only performs the query from the last time that the date was refreshed. If replication is not enabled, updates to the cache require downloading the entire data set.

Configuring Automatic Caching

To automatically update the cache and return results from the local cache, set the following connection string properties:

  • AutoCache: This property automatically updates the cache when the value is set to true.
  • CacheTolerance: This property ensures that the data retrieved from the database is the most current version. The default value is 600 seconds (10 minutes). The connector checks with the data source for newer records after the tolerance interval has expired. Otherwise, it returns the data directly from the cache.

Caching the INVOICES Table

The following example caches the INVOICES table in the file specified by the CacheLocation property of the connection string.

SELECT InvoiceId, InvoiceNumber FROM INVOICES WHERE CustomerName = 'NewTech Industries'

Common Use Case

A common use for automatically caching data is to improve driver performance when making repeated requests to a live data source, such as building a report or creating a visualization. With auto caching enabled, repeated requests to the same data may be executed in a short period of time, but within an allowable tolerance (CacheTolerance) of what is considered "live" data.

CData Python Connector for Zoho Books

Explicitly Caching Data

With explicit caching (AutoCache = false), you decide exactly what data is cached and when to query the cache instead of the live data. Explicit caching gives you full control over the cache contents by using CACHE Statements. This section describes some strategies to use the caching features offered by the connector.

Creating the Cache

To load data in the cache, issue the following statement.

CACHE SELECT * FROM tableName WHERE ...

Once the statement is issued, any matching data in tableName is loaded into the corresponding table.

Updating the Cache

This section describes two ways to update the cache.

Updating with the SELECT Statement

The following example shows a statement that can update modified rows and add missing rows in the cached table. However, this statement does not delete extra rows that are already in the cache. This statement only merges the new rows or updates the existing rows.

CACHE SELECT * FROM INVOICES WHERE CustomerName = 'NewTech Industries'

Updating with the TRUNCATE Statement

The following example shows a statement that can update modified rows and add missing rows in the cached table. This statement can also delete rows in the cache table that are not present in the live data source.

  CACHE WITH TRUNCATE SELECT * FROM INVOICES WHERE CustomerName = 'NewTech Industries'
  

Query the Data in Online or Offline Mode

This section describes how to query the data in online or offline mode.

Online: Select Cached Tables

You can use the tableName#CACHE syntax to explicitly execute queries to the cache while still online, as shown in the following example.

SELECT * FROM INVOICES#CACHE

Offline: Select Cached Tables

With Offline = true, SELECT statements always execute against the local cache database, regardless of whether you explicitly specify the cached table or not. Modification of the cache is disabled in Offline mode to prevent accidentally updating only the cached data. Executing a DELETE/UPDATE/INSERT statement while in Offline mode results in an exception.

The following example selects from the local cache but not the live data source because Offline = true.

SELECT * FROM INVOICES WHERE CustomerName='NewTech Industries' ORDER BY InvoiceNumber ASC

Delete Data from the Cache

You can delete data from the cache by building a direct connection to the database. Note that the connector does not support manually deleting data from the cache.

Common Use Case

A common use for caching is to have an application always query the cached data and only update the cache at set intervals, such as once every day or every two hours. There are two ways in which this can be implemented:

  • AutoCache = false and Offline = false. All queries issued by the application explicitly reference the tableName#CACHE table. When the cache needs to be updated, the application executes a tableName#CACHE ... statement to bring the cached data up to date.
  • Offline = true. Caching is transparent to the application. All queries are executed against the table as normal, so most application code does not need to be aware that caching is done. To update the cached data, simply create a separate connection with Offline = false and execute a tableName#CACHE ... statement.

CData Python Connector for Zoho Books

Data Type Mapping

The connector maps types from the data source to the corresponding data type available in the chosen cache database. The following table shows the mappings between the data types configured in the schema and the data types in the database. Some schema types have synonyms which are all listed in the Schema column.

Data Type Mapping

Note: String columns can map to different data types depending on their length.

Schema .NET JDBC SQL Server Derby MySQL Oracle SQLite Access
int, integer, int32 Int32 int int INTEGER INT NUMBER integer LONG
smallint, short, int16 Int16 short smallint SMALLINT SMALLINT NUMBER integer SHORT
double, float, real Double double float DOUBLE DOUBLE NUMBER double DOUBLE
date DateTime java.sql.Date date DATE DATE DATE date DATETIME
datetime, timestamp DateTime java.sql.Date datetime TIMESTAMP DATETIME TIMESTAMP datetime DATETIME
time, timespan TimeSpan java.sql.Time time TIME TIME TIMESTAMP datetime DATETIME
string, varchar String java.lang.String If length > 4000: nvarchar(max), Otherwise: nvarchar(length)If length > 32672: LONG VARCHAR, Otherwise VARCHAR(length)If length > 255: LONGTEXT, Otherwise: VARCHAR(length)If length > 4000: CLOB, Otherwise: VARCHAR2(length)nvarchar(length)If length > 255: LONGTEXT, Otherwise: VARCHAR(length)
long, int64, bigint Int64 long bigint BIGINT BIGINT NUMBER bigint LONG
boolean, bool Boolean boolean tinyint SMALLINT BIT NUMBER tinyint BIT
decimal, numeric Decimal java.math.BigDecimal decimal DECIMAL DECIMAL DECIMAL decimal CURRENCY
uuid Guid java.util.UUID nvarchar(length) VARCHAR(length)VARCHAR(length) VARCHAR2(length)nvarchar(length) VARCHAR(length)
binary, varbinary, longvarbinary byte[] byte[] binary(1000) or varbinary(max) after SQL Server 2000, image otherwise BLOB LONGBLOB BLOB BLOB LONGBINARY

CData Python Connector for Zoho Books

Query Processing

Query Processing

CData has a client-side SQL engine built into the connector library. This enables support for the full capabilities that SQL-92 offers, including filters, aggregations, functions, etc.

For sources that do not support SQL-92, the connector offloads as much of SQL statement processing as possible to Zoho Books and then processes the rest of the query in memory (client-side). This results in optimal performance.

For data sources with limited query capabilities, the connector handles transformations of the SQL query to make it simpler for the connector. The goal is to make smart decisions based on the query capabilities of the data source to push down as much of the computation as possible. The Zoho Books Query Evaluation component examines SQL queries and returns information indicating what parts of the query the connector is not capable of executing natively.

The Zoho Books Query Slicer component is used in more specific cases to separate a single query into multiple independent queries. The client-side Query Engine makes decisions about simplifying queries, breaking queries into multiple queries, and pushing down or computing aggregations on the client-side while minimizing the size of the result set.

There's a significant trade-off in evaluating queries, even partially, client-side. There are always queries that are impossible to execute efficiently in this model, and some can be particularly expensive to compute in this manner. CData always pushes down as much of the query as is feasible for the data source to generate the most efficient query possible and provide the most flexible query capabilities.

More Information

For a full discussion of how CData handles query processing, see CData Architecture: Query Execution.

CData Python Connector for Zoho Books

Logging

Logging

Capturing connector logging can be very helpful when diagnosing error messages or other unexpected behavior.

Basic Logging

To begin capturing connector logging, set these properties:

  • Logfile: A filepath that designates the name and location of the log file.
  • Verbosity: A numerical value (1-5) that determines the amount of detail in the log. See the page in the Connection Properties section for an explanation of the five levels.
  • MaxLogFileSize: When the limit is hit, a new log is created in the same folder with the date and time appended to the end. The default limit is 100 MB. Values lower than 100 kB will use 100 kB as the value instead.
  • MaxLogFileCount: A string specifying the maximum file count of log files. When the limit is hit, a new log is created in the same folder with the date and time appended to the end and the oldest log file will be deleted. Minimum supported value is 2. A value of 0 or a negative value indicates no limit on the count.

Once these properties are set, the connector populates the log file as it carries out various tasks, such as when authentication is performed or queries are executed. If the specified file doesn't already exist, it is created.

Log Verbosity

The verbosity level determines the amount of detail that the connector reports to the Logfile. Supported Verbosity levels range from 1 to 5.

The following list describes each level:

1Setting Verbosity to 1 logs the query, the number of rows returned by it, the start of execution and the time taken, and any errors.
2Setting Verbosity to 2 logs everything included in Verbosity 1, cache queries, and additional information about the request.
3Setting Verbosity to 3 also logs HTTP headers, as well as the body of the request and the response.
4Setting Verbosity to 4 also logs transport-level communication with the data source. This includes SSL negotiation.
5Setting Verbosity to 5 also logs communication with the data source and additional details that may be helpful in troubleshooting problems. This includes interface commands.

For normal operations, Verbosity should not be set to greater than 1. At higher verbosities you can log substantial amounts of data, which can delay execution times.

To refine the logged content further by showing/hiding specific categories of information, see LogModules.

Sensitive Data

Verbosity levels of 3 and higher may capture information that you do not want shared outside of your organization. The following lists information of concern for each level:

  • Verbosity 3: The full body of the request and the response, which includes all the data returned by the connector
  • Verbosity 4: SSL certificates
  • Verbosity 5: Any extra transfer data not included at Verbosity 3, such as non human-readable binary transfer data

Note: Although we mask sensitive values, such as passwords, in the connection string and any request in the log, it is always best practice to review the logs for any sensitive information before sharing outside your organization.

Advanced Logging

You may want to refine the exact information that is recorded to the log file. This can be accomplished using the LogModules property. This property allows you to filter the logging using a semicolon-separated list of logging modules.

Example property value:

LogModules=INFO;EXEC;SSL;SQL;META;

Note that the logfile filtering triggered by the Verbosity connection property takes precedence over the filtering imposed by this connection property. This means that operations of a higher verbosity level than the level specified in the Verbosity connection property are not printed in the logfile, even if they belong to one of the modules specified in this connection property.

The available modules and submodules are:

Module Name Module Description Submodules
INFO General Information. Includes the connection string, product version (build number), and initial connection messages.
  • Connec – Information related to creating or destroying connections.
  • Messag – Generic label for messages pertaining to connections, the connection string, and product version. These messages are typically specific to the connector, rather than being received and passed along directly from the service.
EXEC Query Execution. Includes execution messages for user-written SQL queries, parsed SQL queries, and normalized SQL queries. Success/failure messages for queries and query pages appear here as well.
  • Messag – Messages pertaining to query execution. These messages are typically specific to the connector, rather than being received and passed along directly from the service.
  • Normlz – Query normalization steps. Query normalization is when the product takes the user-submitted query and rewrites the query to get the same results with optimal performance.
  • Origin – This label applies to any messages recording a user's original query (the exact, unaltered, non-normalized query executed by the user).
  • Page – Messages related to query paging.
  • Parsed – Query parsing steps. Parsing is the process of converting the user-submitted query into a standardized format for easier processing.
HTTP HTTP protocol messages. Includes HTTP requests/responses (including POST messages), as well as Kerberos related messages.
  • KERB – HTTP requests related to Kerberos.
  • Messag – Messages pertaining to HTTP protocols. These messages are typically specific to the connector, rather than being received and passed along directly from the service.
  • Unpack – This label applies to messages about zipped data being returned from the service API and unpacked by the product.
  • Res – Messages containing HTTP responses.
  • Req – Messages containing HTTP requests.
WSDL Messages pertaining to the generation of WSDL/XSD files.
SSL SSL certificate messages.
  • Certif – Messages pertaining to SSL certificates.
AUTH Authentication related failure/success messages.
  • Messag – Messages pertaining to authentication. These messages are typically specific to the connector, rather than being received and passed along directly from the service.
  • OAuth – Messages related to OAuth authentication.
  • Krbros – Kerberos-related authentication messages.
SQL Includes SQL transactions, SQL bulk transfer messages, and SQL result set messages.
  • Bulk – Messages pertaining to bulk query execution.
  • Cache – Messages related to reading row data from and writing row data to the product's cache for better performance.
  • Messag – Messages pertaining to SQL transactions. These messages are typically specific to the connector, rather than being received and passed along directly from the service.
  • ResSet – Query resultsets.
  • Transc – Messages related to handling transactions, including information about the number of jobs executed and backup table handling.
META Metadata cache and schema messages.
  • Cache – Messages related to reading from and modifying column and table definitions in the product's cache for better performance.
  • Schema – Messages related to retrieving metadata from or modifying the service schema.
  • MemSto – Messages related to writing to or reading from in-memory metadata cache.
  • Storag – Messages relating to storing metadata on disk or in an external data store, rather than in memory.
FUNC Information related to executing SQL functions.
  • Errmsg – Error messages related to executing SQL functions.
TCP Incoming and outgoing raw bytes on TCP transport layer messages.
  • Send – Raw data sent via the TCP protocol.
  • Receiv – Raw data received via the TCP protocol.
FTP Messages pertaining to the File Transfer Protocol.
  • Info – Status messages related to communication in the FTP protocol.
  • Client – Messages related to actions taken by the FTP client (the product) during FTP communication.
  • Server – Messages related to actions taken by the FTP server during FTP communication.
SFTP Messages pertaining to the Secure File Transfer Protocol.
  • Info – Status messages related to communication in the SFTP protocol.
  • To_Server – Messages related to actions taken by the SFTP client (the product) during SFTP communication.
  • From_Server – Messages related to actions taken by the SFTP server during SFTP communication.
POP Messages pertaining to data transferred via the Post Office Protocol.
  • Client – Messages related to actions taken by the POP client (the product) during POP communication.
  • Server – Messages related to actions taken by the POP server during POP communication.
  • Status – Status messages related to communication in the POP protocol.
SMTP Messages pertaining to data transferred via the Simple Mail Transfer Protocol.
  • Client – Messages related to actions taken by the SMTP client (the product) during SMTP communication.
  • Server – Messages related to actions taken by the SMTP server during SMTP communication.
  • Status – Status messages related to communication in the SMTP protocol.
CORE Messages relating to various internal product operations not covered by other modules.
DEMN Messages related to SQL remoting.
CLJB Messages about bulk data uploads (cloud job).
  • Commit – Submissions for bulk data uploads.
SRCE Miscellaneous messages produced by the product that don't belong in any other module.
TRANCE Advanced messages concerning low-level product operations.

CData Python Connector for Zoho Books

Exception Handling

Exception Handling

Exceptions can be surfaced from either the API or the CData Python Connector for Zoho Books. Each exception will have an error code, an error message, and a SQL state.

Error Codes

The error code classifies the type of error.

0 NONE Used for unclassified errors and internally handled errors. This code also covers data source-specific errors that do not fit in any specific category.
65537 TCP_UNKNOWN_HOST Unable to resolve a hostname (DNS failure).
65538 TCP_CONNECTION_REFUSED Could not connect to the remote port.
65539 TCP_AUTH_FAILED Login failed when using a binary authentication protocol. Use this for auth errors when the protocol is not HTTP (LDAP, SASL, Kerberos, ...).
65540 TCP_TIMEOUT Did not receive a response after sending a request to the server.
65541 TCP_PROTOCOL For wire protocol drivers. Either the server sent a bad packet that we are unable to process, or we cannot construct a packet to send.
131073 TLS_SERVER_UNTRUSTED Could not verify SSL server certificate.
131074 TLS_CLIENT_UNTRUSTED Server did not accept the client certificate we sent.
196609 OAUTH_DECRYPT_FAILED OAuthEncryptKey did not decrypt the OAuthSettings file.
196610 OAUTH_MISSING_CLIENT_INFO OAuthClientId / OAuthClientSecret / OAuthJWTCert is missing.
196611 OAUTH_MISSING_PROP General OAuth property missing. OAUTH_MISSING_CLIENT_INFO is used for missing client ID/secret and JWT cert.
196612 OAUTH_NO_ACCESS_TOKEN Unable to retrieve access token. Only use this when getting a token in GetOAuthAccessToken / RefreshOAuthAccessToken.
196613 OAUTH_TOKEN_EXPIRED The access token expired. Normally used with a RefreshOAuth/OAuthException behavior.
196614 OAUTH_INVALID_PROP OAuth property has an invalid value. OAUTH_MISSING_CLIENT_INFO / OAUTH_MISSING_PROP is used if the value is not set.
262145 HTTP_REQUEST_TIMEOUT Did not receive a response from the HTTP server.
262146 HTTP_CLIENT_ERROR Generic HTTP 4xx error. Only use for 4xx errors not covered by other codes.
262147 HTTP_AUTH_FAILED HTTP 401 error.
262148 HTTP_LIMIT_EXCEEDED HTTP 429 error.
262149 HTTP_SERVER_ERROR HTTP 5xx error.
262150 HTTP_NOT_FOUND_ERROR HTTP 404 error.
327681 CORE_TIMEOUT General timeout. Not related to a specific network request.
327682 CORE_OP_NOT_ALLOWED Operation blocked by provider permissions.
327683 CORE_CONNECTION_CONFIG Connection configuration is not valid.
327684 CORE_SERIALIZE Failed to encode data into a specific format (XML, JSON, CSV, ...).
327685 CORE_DESERIALIZE Failed to decode data from a specific format (XML, JSON, CSV, ...).
393217 SQL_SYNTAX_ERROR Unable to parse a SQL query.
393218 SQL_MISSING_COLUMNS Query did not include required columns.
393219 SQL_MISSING_PARAMS Stored procedure call did not include required parameters.
393220 SQL_QUERY_NOT_SUPPORTED A part of the query is not allowed in the current context.
458753 SSH_SERVER_UNTRUSTED Could not verify SSH server.
524289 STORAGE_LIST_EXCEPTION Issue listing storage resources.
524290 STORAGE_RESOURCE_NOT_FOUND Issue finding storage resources.
524291 STORAGE_ROOT_RESOURCE_NOT_FOUND The root resource (bucket/share/drive) was not found; cannot create it in flat file drivers.
524292 STORAGE_RESOURCE_NOT_A_DIRECTORY Storage resource is not a directory.
524293 STORAGE_RESOURCE_NOT_A_FILE Storage resource is not a file.
524294 STORAGE_PERMISSIONS_DENIED Storage permissions denied.

SQL State

The SQL state is used when throwing generic provider errors to the wrapper and indicates the success or failure of a call.

Some of the common SQL states are listed below:

07007 REQUIRED_CLAUSE Class Code 07: Dynamic SQL Error.
08001 OPEN_CONNECTION Class Code 08: Connection Exception. The connection was unable to be established to the application server or other server.
08004 REJECT_CONNECTION The application server rejected establishment of the connection.
42501 PRIVILEGE_IDENTIFIED_OBJECT Class Code 42: Syntax Error or Access Rule Violation. The authorization ID does not have the privilege to perform the specified operation on the identified object.
42506 AUTH_FAILED Owner authorization failure occurred.
42601 SQL_SYNTAX A character, token, or clause is invalid or missing.

Error Message

The error message provides more detailed reasoning about why the error occurred. It provides an explanation of the issue, and may include steps on how to resolve it.

CData Python Connector for Zoho Books

SQL Compliance

The CData Python Connector for Zoho Books supports several operations on data, including querying, deleting, modifying, and inserting.

SELECT Statements

See SELECT Statements for a syntax reference and examples.

See Data Model for information on the capabilities of the Zoho Books API.

INSERT Statements

See INSERT Statements for a syntax reference and examples.

UPDATE Statements

The primary key Id is required to update a record. See UPDATE Statements for a syntax reference and examples.

DELETE Statements

The primary key Id is required to delete a record. See DELETE Statements for a syntax reference and examples.

CACHE Statements

CACHE statements allow granular control over the connector's caching functionality. For a syntax reference and examples, see CACHE Statements.

For more information on the caching feature, see Caching Data.

EXECUTE Statements

Use EXECUTE or EXEC statements to execute stored procedures. See EXECUTE Statements for a syntax reference and examples.

Names and Quoting

  • Table and column names are considered identifier names; as such, they are restricted to the following characters: [A-Z, a-z, 0-9, _:@].
  • To use a table or column name with characters not listed above, the name must be quoted using square brackets ([name]) in any SQL statement.
  • Parameter names can optionally start with the @ symbol (e.g., @p1 or @CustomerName) and cannot be quoted.
  • Strings must be quoted using single quotes (e.g., 'John Doe').

CData Python Connector for Zoho Books

SQL Functions

The connector provides functions that are similar to those that are available with most standard databases. These functions are implemented in the CData provider engine and thus are available across all data sources with the same consistent API. Three categories of functions are available: string, date, and math.

The connector interprets all SQL function inputs as either strings or column identifiers, so you need to escape all literals as strings, with single quotes. For example, contrast the SQL Server syntax and connector syntax for the DATENAME function:

  • SQL Server:
    SELECT DATENAME(yy,GETDATE())
  • connector:
    SELECT DATENAME('yy',GETDATE())

String Functions

These functions perform string manipulations and return a string value. See STRING Functions for more details.

Date Functions

These functions perform date and date time manipulations. See DATE Functions for more details.

Math Functions

These functions provide mathematical operations. See MATH Functions for more details.

CData Python Connector for Zoho Books

STRING Functions

ASCII(character_expression)

Returns the ASCII code value of the left-most character of the character expression.

  • character_expression: The character expression.

                      SELECT ASCII('0');
                      --  Result: 48
                    

BASE64_ENCODE(input_binary)

Returns the Base64-encoded string form of a binary input.

  • input_binary: The binary value to encode.

                        SELECT BASE64_ENCODE(BinaryData);
                    -- Result: 'QmFzZTY0RW5jb2RlZA=='
                    

BASE64_DECODE(input_string)

Returns the binary result of decoding a Base64-encoded string.

  • input_string: The Base64-encoded string.

                        SELECT BASE64_DECODE('QmFzZTY0RW5jb2RlZA==');
                    -- Result: (binary output)
                    

CHAR(integer_expression)

Converts the integer ASCII code to the corresponding character.

  • integer_expression: The integer from 0 through 255.

                      SELECT CHAR(48);
                      -- Result: '0'
                    

CHARINDEX(expressionToFind ,expressionToSearch [,start_location ])

Returns the starting position of the specified expression in the character string.

  • expressionToFind: The character expression to find.
  • expressionToSearch: The character expression, typically a column, to search.
  • start_location: An optional character position to start searching for expressionToFind in expressionToSearch.

                      SELECT CHARINDEX('456', '0123456');
                      -- Result: 4

                      SELECT CHARINDEX('456', '0123456', 5);
                      -- Result: -1
                    

CHAR_LENGTH(character_expression),

Returns the number of UTF-8 characters present in the expression.

  • character_expression: The set of characters to be evaluated for length.

				 SELECT CHAR_LENGTH('sample text') FROM Account LIMIT 1
				 -- Result: 11			
				

CONCAT(string_value1, string_value2, ..., string_valueN)

Returns the string that is the concatenation of two or more string values.

  • string_value1: The first string to be concatenated.
  • string_value2: The second string to be concatenated.
  • string_valueN: (optional) Any additional strings to be concatenated.

                      SELECT CONCAT('Hello, ', 'world!');
                      -- Result: 'Hello, world!'
                    

CONTAINS(expressionToSearch, expressionToFind)

Returns 1 if expressionToFind is found within expressionToSearch; otherwise, 0.

  • expressionToSearch: The character expression, typically a column, to search.
  • expressionToFind: The character expression to find.

                      SELECT CONTAINS('0123456', '456');
                      -- Result: 1

                      SELECT CONTAINS('0123456', 'Not a number');
                      -- Result: 0
                    

ENDSWITH(character_expression, character_suffix)

Returns 1 if character_expression ends with character_suffix; otherwise, 0.

  • character_expression: The character expression.
  • character_suffix: The character suffix to search for.

                      SELECT ENDSWITH('0123456', '456');
                      -- Result: 1

                      SELECT ENDSWITH('0123456', '012');
                      -- Result: 0
                    

FILESIZE(uri)

Returns the number of bytes present in the file at the specified file path.

  • uri: The path of the file from which to read the size.

				SELECT FILESIZE('C:/Users/User1/Desktop/myfile.txt');
				-- Result: 23684
				

FORMAT(value [, parseFormat], format )

Returns the value formatted with the specified format.

  • value: The string to format.
  • format: The string specifying the output syntax of the date or numeric format.
  • parseFormat: The string specifying the input syntax of the date value. Not applicable to numeric types.

                      SELECT FORMAT(12.34, '#');
                      -- Result: 12

                      SELECT FORMAT(12.34, '#.###');
                      -- Result: 12.34

                      SELECT FORMAT(1234, '0.000E0');
                      -- Result: 1.234E3
                      
                      SELECT FORMAT('2019/01/01', 'yyyy-MM-dd');
                      -- Result: 2019-01-01
                      
                      SELECT FORMAT('20190101', 'yyyyMMdd', 'yyyy-MM-dd');
                      -- Result: '2019-01-01'
                    

HASHBYTES(algorithm, value)

Returns the hash of the input value as a byte array using the given algorithm. The supported algorithms are MD5, SHA1, SHA2_256, SHA2_512, SHA3_224, SHA3_256, SHA3_384, and SHA3_512.

  • algorithm: The algorithm to use for hashing. Must be one of MD5, SHA1, SHA2_256, SHA2_512, SHA3_224, SHA3_256, SHA3_384, or SHA3_512.
  • value: The value to hash. Must be either a string or byte array.

                      SELECT HASHBYTES('MD5', 'Test');
                      -- Result (byte array): 0x0CBC6611F5540BD0809A388DC95A615B
                    

INDEXOF(expressionToSearch, expressionToFind [,start_location ])

Returns the starting position of the specified expression in the character string.

  • expressionToSearch: The character expression, typically a column, to search.
  • expressionToFind: The character expression to find.
  • start_location: An optional character position to start searching for expressionToFind in expressionToSearch.

                      SELECT INDEXOF('0123456', '456');
                      -- Result: 4

                      SELECT INDEXOF('0123456', '456', 5);
                      -- Result: -1
                    

ISALPHABETIC(character_expression)

Returns 1 if the character expression consists only of alphabetic characters; otherwise, 0.

  • character_expression: The string expression to evaluate.

                      SELECT ISALPHABETIC('Hello');
                      -- Result: 1

                      SELECT ISALPHABETIC('Hello123');
                      -- Result: 0

                      SELECT ISALPHABETIC('Hello!');
                      -- Result: 0
                    

ISALPHANUMERIC(character_expression)

Returns 1 if the character expression consists only of alphabetic and numeric characters; otherwise, 0.

  • character_expression: The string expression to evaluate.

                      SELECT ISALPHANUMERIC('Hello123');
                      -- Result: 1

                      SELECT ISALPHANUMERIC('123');
                      -- Result: 1

                      SELECT ISALPHANUMERIC('Hello.123');
                      -- Result: 0
                    

ISNUMERIC(character_expression)

Returns 1 if the character expression consists only of numeric digits and up to one decimal point; otherwise, 0.

  • character_expression: The string expression to evaluate.

                      SELECT ISNUMERIC('123');
                      -- Result: 1

                      SELECT ISNUMERIC('123.45');
                      -- Result: 1

                      SELECT ISNUMERIC('123.45.67');
                      -- Result: 0

                      SELECT ISNUMERIC('12a3');
                      -- Result: 0
                    

JSON_EXTRACT(json, jsonpath)

Selects any value in a JSON array or object. The path to the array is specified in the jsonpath argument. Return value is numeric or null.

  • json: The JSON document to extract.
  • jsonpath: The XPath used to select the nodes. The JSONPath must be a string constant. The values of the nodes selected will be returned in a token-separated list.

                      SELECT JSON_EXTRACT('{"test": {"data": 1}}', '$.test');
                      -- Result: '{"data":1}'

                      SELECT JSON_EXTRACT('{"test": {"data": 1}}', '$.test.data');
                      -- Result: 1

                      SELECT JSON_EXTRACT('{"test": {"data": [1, 2, 3]}}', '$.test.data[1]');
                      -- Result: 2
                    

LEFT ( character_expression , integer_expression )

Returns the specified number of characters counting from the left of the specified string.

  • character_expression: The character expression.
  • integer_expression: The positive integer that specifies how many characters will be returned counting from the left of character_expression.

                      SELECT LEFT('1234567890', 3);
                      -- Result: '123'
                    

LEN(string_expression)

Returns the number of characters of the specified string expression.

  • string_expression: The string expression.

                      SELECT LEN('12345');
                      -- Result: 5
                    

LOCATE(substring,string)

Returns an integer representing how many characters into the string the substring appears.

  • substring: The substring to find inside larger string.
  • string: The larger string that is searched for the substring.
  • start locations: An optional integer that sets the character position (offset) from which to start searching.

				SELECT LOCATE('sample','XXXXXsampleXXXXX');
				-- Result: 6

                SELECT LOCATE('sample', 'XXXXXsampleXXXXX', 7)
                -- Result: 0
				

LOWER ( character_expression )

Returns the character expression with the uppercase character data converted to lowercase.

  • character_expression: The character expression.

                      SELECT LOWER('MIXED case');
                      -- Result: 'mixed case'
                    

LTRIM(character_expression)

Returns the character expression with leading blanks removed.

  • character_expression: The character expression.

                      SELECT LTRIM('     trimmed');
                      -- Result: 'trimmed'
                    

MASK(string_expression, mask_character [, start_index [, end_index ]])

Replaces the characters between start_index and end_index with the mask_character within the string.

  • string_expression: The string expression to be searched.
  • mask_character: The character to mask with.
  • start_index: The optional number of characters to leave unmasked at beginning of string. Defaults to 0.
  • end_index: The optional number of characters to leave unmasked at end of string. Defaults to 0.

                        SELECT MASK('1234567890','*',);
                        -- Result: '**********'
                        SELECT MASK('1234567890','*', 4);
                        -- Result: '1234******'
                        SELECT MASK('1234567890','*', 4, 2);
                        -- Result: '1234****90'  
                    

NCHAR(integer_expression)

Returns the Unicode character with the specified integer code as defined by the Unicode standard.

  • integer_expression: The integer from 0 through 65535 (0 through xFFFF).

OCTET_LENGTH(character_expression),

Returns the number of bytes present in the expression.

  • character_expression: The set of characters to be be evaluated.

				 SELECT OCTET_LENGTH('text') FROM Account LIMIT 1
				 -- Result: 4
				

PATINDEX(pattern, expression)

Returns the starting position of the first occurrence of the pattern in the expression. Returns 0 if the pattern is not found.

  • pattern: The character expression that contains the sequence to be found. The wild-card character % can be used only at the start or end of the expression.
  • expression: The expression, typically a column, to search for the pattern.

                      SELECT PATINDEX('123%', '1234567890');
                      -- Result: 1

                      SELECT PATINDEX('%890', '1234567890');
                      -- Result: 8

                      SELECT PATINDEX('%456%', '1234567890');
                      -- Result: 4
                    

POSITION(expressionToFind IN expressionToSearch)

Returns the starting position of the specified expression in the character string.

  • expressionToFind: The character expression to find.
  • expressionToSearch: The character expression, typically a column, to search.

                      SELECT POSITION('456' IN '123456');
                      -- Result: 4

                      SELECT POSITION('x' IN '123456');
                      -- Result: 0
                    

QUOTENAME(character_string [, quote_character])

Returns a valid SQL Server-delimited identifier by adding the necessary delimiters to the specified Unicode string.

  • character_string: The string of Unicode character data. The string is limited to 128 characters. Inputs greater than 128 characters return null.
  • quote_character: An optional single character to be used as the delimiter. These include:
    • a single quotation mark (')
    • a left or right bracket ([])
    • a double quotation mark (")
    • a left or right parenthesis ( () )
    • a greater or less than sign (><)
    • a left or right brace ({})
    • a backtick (`)

    If quote_character is not specified brackets are used. If an unacceptable character is supplied, it returns NULL.


                      SELECT QUOTENAME('table_name');
                      -- Result: '[table_name]'

                      SELECT QUOTENAME('table_name', '"');
                      -- Result: '"table_name"'

                      SELECT QUOTENAME('table_name', '[');
                      -- Result: '[table_name]'
                    

REGEXP_REPLACE(expr, pattern [, replacement [, position [, occurrence [, match_type]]]])

Replaces occurrences of a regular expression pattern in the input string with a specified value and returns the resulting string.

  • expr: The string expression to be searched.
  • pattern: The regular expression pattern to match.
  • replacement: (optional) The string to replace each matched occurrence of pattern with. Supports backreferences \1 through \9 and escape sequences \n, \r, \t, and \\. By default, this argument is an empty string, meaning matched portions are removed from the output string.
  • position: (optional) The 1-based starting position used when searching for regular expression matches in expr. The default is 1. All characters prior to the starting position are included in the output string unaltered. Skipped characters are ignored when calculating regular expression matches, even if they match pattern.
  • occurrence: (optional) Specifies whether all occurrences of pattern,, or only a specific occurrence of pattern are replaced. The default is 0, which means all occurrences of pattern are replaced with replacement. Set to 1 to only replace the first instance of the pattern; 2 to replace the second; etc.
  • match_type: (optional) Modifiers used to customize matching behavior. Supported values are: 'c' (case-sensitive, default), 'i' (case-insensitive), 'm' (multiline), 'n' (dot matches newline), 'x' (extended mode). These can be freely combined by including the letters back to back. For example, 'im' applies the functionality of both 'i' and 'm'. The regular expression syntax used is that of the Extended mode ('x') ignores whitespace and allows inline comments. If the pattern needs to match a literal space, it must be explicitly escaped.

                      SELECT REGEXP_REPLACE('abc123def456', '\d+', 'NUM');
                      -- Result: 'abcNUMdefNUM'

                      SELECT REGEXP_REPLACE('Hello\nHELLO\nhello', '^hello', 'X', 1, 0, 'im');
                      -- Result: 'X\nX\nX'
                    

REPLACE(string_expression, string_pattern, string_replacement)

Replaces all occurrences of a string with another string.

  • string_expression: The string expression to be searched. This can be a character or binary data type.
  • string_pattern: The substring to be found. Cannot be an empty string.
  • string_replacement: The replacement string.

                      SELECT REPLACE('1234567890', '456', '|');
                      -- Result: '123|7890'

                      SELECT REPLACE('123123123', '123', '.');
                      -- Result: '...'

                      SELECT REPLACE('1234567890', 'a', 'b');
                      -- Result: '1234567890'
                    

REPLICATE ( string_expression ,integer_expression )

Repeats the string value the specified number of times.

  • string_expression: The string to replicate.
  • integer_expression: The repeat count.

                      SELECT REPLACE('x', 5);
                      -- Result: 'xxxxx'
                    

REVERSE ( string_expression )

Returns the reverse order of the string expression.

  • string_expression: The string.

                      SELECT REVERSE('1234567890');
                      -- Result: '0987654321'
                    

RIGHT ( character_expression , integer_expression )

Returns the right part of the string with the specified number of characters.

  • character_expression: The character expression.
  • integer_expression: The positive integer that specifies how many characters of the character expression will be returned.

                      SELECT RIGHT('1234567890', 3);
                      -- Result: '890'
                    

RTRIM(character_expression)

Returns the character expression after it removes trailing blanks.

  • character_expression: The character expression.

                      SELECT RTRIM('trimmed     ');
                      -- Result: 'trimmed'
                    

SOUNDEX(character_expression)

Returns the four-character Soundex code, based on how the string sounds when spoken.

  • character_expression: The alphanumeric expression of character data.

                      SELECT SOUNDEX('smith');
                      -- Result: 'S530'
                    

SPACE(repeatcount)

Returns the string that consists of repeated spaces.

  • repeatcount: The number of spaces.

                      SELECT SPACE(5);
                      -- Result: '     '
                    

SPLIT(string, delimiter, offset)

Returns a section of the string between to delimiters.

  • string: The string to split.
  • delimiter: The character to split the string with.
  • offset: The number of the split to return. Positive numbers are treated as offsets from the left, and negative numbers are treated as offsets from the right.

                      SELECT SPLIT('a/b/c/d', '/', 1);
                      -- Result: 'a'
                      SELECT SPLIT('a/b/c/d', '/', -2);
                      -- Result: 'c'
                    

STARTSWITH(character_expression, character_prefix)

Returns 1 if character_expression starts with character_prefix; otherwise, 0.

  • character_expression: The character expression.
  • character_prefix: The character prefix to search for.

                      SELECT STARTSWITH('0123456', '012');
                      -- Result: 1

                      SELECT STARTSWITH('0123456', '456');
                      -- Result: 0
                    

STR ( float_expression [ , integer_length [ , integer_decimal ] ] )

Returns the character data converted from the numeric data. For example, STR(123.45, 6, 1) returns 123.5.

  • float_expression: The float expression.
  • length: The optional total length to return. This includes decimal point, sign, digits, and spaces. The default is 10.
  • decimal: The optional number of places to the right of the decimal point. The decimal must be less than or equal to 16.

                      SELECT STR('123.456');
                      -- Result: '123'

                      SELECT STR('123.456', 2);
                      -- Result: '**'

                      SELECT STR('123.456', 10, 2);
                      -- Result: '123.46'
                    

STUFF(character_expression , integer_start , integer_length , replaceWith_expression)

Inserts a string into another string. It deletes the specified length of characters in the first string at the start position and then inserts the second string into the first string at the start position.

  • character_expression: The string expression.
  • start: The integer value that specifies the location to start deletion and insertion. If start or length is negative, null is returned. If start is longer than the string to be modified, character_expression, null is returned.
  • length: The integer that specifies the number of characters to delete. If length is longer than character_expression, deletion occurs up to the last character in replaceWith_expression.
  • replaceWith_expression: The expression of character data that will replace length characters of character_expression beginning at the start value.

                      SELECT STUFF('1234567890', 3, 2, 'xx');
                      -- Result: '12xx567890'
                    

SUBSTRING(string_value FROM start FOR length)

Returns the part of the string with the specified length; starts at the specified index.

  • string_value: The character string.
  • start: The positive integer that specifies the start index of characters to return.
  • length: Optional. The positive integer that specifies how many characters will be returned.

                      SELECT SUBSTRING('1234567890' FROM 3 FOR 2);
                      -- Result: '34'

                      SELECT SUBSTRING('1234567890' FROM 3);
                      -- Result: '34567890'
                    
You can also drop the FROM and FOR clauses:
                    SELECT SUBSTRING('1234567890', 3, 2)
                    --Result: '34'
                    SELECT SUBSTRING('1234567890', 3)
                    --Result: '34567890'
                    

TEXT_ENCODE(input_string, charset)

Returns binary output by encoding a string using the specified character set.

  • input_string: The plain text string.
  • charset: The character set to use, such as 'UTF-8', 'ISO-8859-1'.

                    SELECT TEXT_ENCODE('Café', 'UTF-8');
                    -- Result: (binary output)
                    

TEXT_DECODE(input_binary, charset)

Returns a string decoded from binary data using the specified character set.

  • input_binary: The binary value to decode.
  • charset: The character set used for decoding.

                    SELECT TEXT_DECODE(BinaryData, 'UTF-8');
                    -- Result: 'Café'
                    

TOSTRING(string_value1)

Converts the value of this instance to its equivalent string representation.

  • string_value1: The string to be converted.

                      SELECT TOSTRING(123);
                      -- Result: '123'

                      SELECT TOSTRING(123.456);
                      -- Result: '123.456'

                      SELECT TOSTRING(null);
                      -- Result: ''
                    

TRIM(trimspec trimchar FROM string_value)

Returns the character expression with leading and/or trailing blanks removed.

  • trimspec: Optional. If included must be one of the keywords BOTH, LEADING or TRAILING.
  • trimchar: Optional. If included should be a one-character string value.
  • string_value: The string value to trim.

                      SELECT TRIM('     trimmed     ');
                      -- Result: 'trimmed'

                      SELECT TRIM(LEADING FROM '     trimmed     ');
                      -- Result: 'trimmed     '

                      SELECT TRIM('-' FROM '-----trimmed-----');
                      -- Result: 'trimmed'

                      SELECT TRIM(BOTH '-' FROM '-----trimmed-----');
                      -- Result: 'trimmed'

                      SELECT TRIM(TRAILING '-' FROM '-----trimmed-----');
                      -- Result: '-----trimmed'
                    

UNICODE(ncharacter_expression)

Returns the integer value defined by the Unicode standard of the first character of the input expression.

  • ncharacter_expression: The Unicode character expression.

UPPER ( character_expression )

Returns the character expression with lowercase character data converted to uppercase.

  • character_expression: The character expression.

                      SELECT UPPER('MIXED case');
                      -- Result: 'MIXED CASE'
                    

XML_EXTRACT(xml, xpath [, separator])

Extracts an XML document using the specified XPath to flatten the XML. A comma is used to separate the outputs by default, but this can be changed by specifying the third parameter.

  • xml: The XML document to extract.
  • xpath: The XPath used to select the nodes. The nodes selected will be returned in a token-separated list.
  • separator: The optional token used to separate the items in the flattened response. If this is not specified, the separator will be a comma.

                      SELECT XML_EXTRACT('<vowels><ch>a</ch><ch>e</ch><ch>i</ch><ch>o</ch><ch>u</ch></vowels>', '/vowels/ch');
                      -- Result: 'a,e,i,o,u'

                      SELECT XML_EXTRACT('<vowels><ch>a</ch><ch>e</ch><ch>i</ch><ch>o</ch><ch>u</ch></vowels>', '/vowels/ch', ';');
                      -- Result: 'a;e;i;o;u'
                    

CData Python Connector for Zoho Books

MATH Functions

ABS ( numeric_expression )

Returns the absolute (positive) value of the specified numeric expression.

  • numeric_expression: The expression of an indeterminate numeric data type except for the bit data type.

                      SELECT ABS(15);
                      -- Result: 15

                      SELECT ABS(-15);
                      -- Result: 15
                    

ACOS ( float_expression )

Returns the arc cosine, the angle in radians whose cosine is the specified float expression.

  • float_expression: The float expression that specifies the cosine of the angle to be returned. Values outside the range from -1 to 1 return null.

                      SELECT ACOS(0.5);
                      -- Result: 1.0471975511966
                    

ASIN ( float_expression )

Returns the arc sine, the angle in radians whose sine is the specified float expression.

  • float_expression: The float expression that specifies the sine of the angle to be returned. Values outside the range from -1 to 1 return null.

                      SELECT ASIN(0.5);
                      -- Result: 0.523598775598299
                    

ATAN ( float_expression )

Returns the arc tangent, the angle in radians whose tangent is the specified float expression.

  • float_expression: The float expression that specifies the tangent of the angle to be returned.

                      SELECT ATAN(10);
                      -- Result: 1.47112767430373
                    

ATN2 ( float_expression1 , float_expression2 )

Returns the angle in radians between the positive x-axis and the ray from the origin to the point (y, x) where x and y are the values of the two specified float expressions.

  • float_expression1: The float expression that is the y-coordinate.
  • float_expression2: The float expression that is the x-coordinate.

                      SELECT ATN2(1, 1);
                      -- Result: 0.785398163397448
                    

CEILING ( numeric_expression ) or CEIL( numeric_expression )

Returns the smallest integer greater than or equal to the specified numeric expression.

  • numeric_expression: The expression of an indeterminate numeric data type except for the bit data type.

                      SELECT CEILING(1.3);
                      -- Result: 2

                      SELECT CEILING(1.5);
                      -- Result: 2

                      SELECT CEILING(1.7);
                      -- Result: 2
                    

COS ( float_expression )

Returns the trigonometric cosine of the specified angle in radians in the specified expression.

  • float_expression: The float expression of the specified angle in radians.

                      SELECT COS(1);
                      -- Result: 0.54030230586814
                    

COT ( float_expression )

Returns the trigonometric cotangent of the angle in radians specified by float_expression.

  • float_expression: The float expression of the angle in radians.

                      SELECT COT(1);
                      -- Result: 0.642092615934331
                    

DEGREES ( numeric_expression )

Returns the angle in degrees for the angle specified in radians.

  • numeric_expression: The angle in radians, an expression of an indeterminate numeric data type except for the bit data type.

                      SELECT DEGREES(3.1415926);
                      -- Result: 179.999996929531
                    

EXP ( float_expression )

Returns the exponential value of the specified float expression. For example, EXP(LOG(20)) is 20.

  • float_expression: The float expression.

                      SELECT EXP(2);
                      -- Result: 7.38905609893065
                    

EXPR ( expression )

Evaluates the expression.

  • expression: The expression. Operators allowed are +, -, *, /, ==, !=, >, <, >=, and <=.

                      SELECT EXPR('1 + 2 * 3');
                      -- Result: 7

                      SELECT EXPR('1 + 2 * 3 == 7');
                      -- Result: true
                    

FLOOR ( numeric_expression )

Returns the largest integer less than or equal to the numeric expression.

  • numeric_expression: The expression of an indeterminate numeric data type except for the bit data type.

                      SELECT FLOOR(1.3);
                      -- Result: 1

                      SELECT FLOOR(1.5);
                      -- Result: 1

                      SELECT FLOOR(1.7);
                      -- Result: 1
                    

GREATEST(int1,int2,....)

Returns the greatest of the supplied integers.

				SELECT GREATEST(3,5,8,10,1)
				-- Result: 10			
				

HEX(value)

Returns a the equivalent hex for the input value.

  • value: A string or numerical value to be converted into hex.

				SELECT HEX(866849198);
				-- Result: 33AB11AE
				
				SELECT HEX('Sample Text');
				-- Result: 53616D706C652054657874
				

JSON_AVG(json, jsonpath)

Computes the average value of a JSON array within a JSON object. The path to the array is specified in the jsonpath argument. Return value is numeric or null.

  • json: The JSON document to compute.
  • jsonpath: The JSONPath used to select the nodes. [x], [2..], [..8], or [1..12] are accepted. [x] selects all nodes.

                      SELECT JSON_AVG('[1,2,3,4,5]', '$[x]');
                      -- Result: 3

                      SELECT JSON_AVG('{"test": {"data": [1,2,3,4,5]}}', '$.test.data[x]');
                      -- Result: 3

                      SELECT JSON_AVG('{"test": {"data": [1,2,3,4,5]}}', '$.test.data[3..]');
                      -- Result: 4.5
                    

JSON_COUNT(json, jsonpath)

Returns the number of elements in a JSON array within a JSON object. The path to the array is specified in the jsonpath argument. Return value is numeric or null.

  • json: The JSON document to compute.
  • jsonpath: The JSONPath used to select the nodes. [x], [2..], [..8], or [1..12] are accepted. [x] selects all nodes.

                      SELECT JSON_COUNT('[1,2,3,4,5]', '$[x]');
                      -- Result: 5

                      SELECT JSON_COUNT('{"test": {"data": [1,2,3,4,5]}}', '$.test.data[x]');
                      -- Result: 5

                      SELECT JSON_COUNT('{"test": {"data": [1,2,3,4,5]}}', '$.test.data[3..]');
                      -- Result: 2
                    

JSON_MAX(json, jsonpath)

Gets the maximum value in a JSON array within a JSON object. The path to the array is specified in the jsonpath argument. Return value is numeric or null.

  • json: The JSON document to compute.
  • jsonpath: The JSONPath used to select the nodes. [x], [2..], [..8], or [1..12] are accepted. [x] selects all nodes.

                      SELECT JSON_MAX('[1,2,3,4,5]', '$[x]');
                      -- Result: 5

                      SELECT JSON_MAX('{"test": {"data": [1,2,3,4,5]}}', '$.test.data[x]');
                      -- Result: 5

                      SELECT JSON_MAX('{"test": {"data": [1,2,3,4,5]}}', '$.test.data[..3]');
                      -- Result: 4
                    

JSON_MIN(json, jsonpath)

Gets the minimum value in a JSON array within a JSON object. The path to the array is specified in the jsonpath argument. Return value is numeric or null.

  • json: The JSON document to compute.
  • jsonpath: The JSONPath used to select the nodes. [x], [2..], [..8], or [1..12] are accepted. [x] selects all nodes.

                      SELECT JSON_MIN('[1,2,3,4,5]', '$[x]');
                      -- Result: 1

                      SELECT JSON_MIN('{"test": {"data": [1,2,3,4,5]}}', '$.test.data[x]');
                      -- Result: 1

                      SELECT JSON_MIN('{"test": {"data": [1,2,3,4,5]}}', '$.test.data[3..]');
                      -- Result: 4
                    

JSON_SUM(json, jsonpath)

Computes the summary value in JSON according to the JSONPath expression. Return value is numeric or null.

  • json: The JSON document to compute.
  • jsonpath: The JSONPath used to select the nodes. [x], [2..], [..8], or [1..12] are accepted. [x] selects all nodes.

                      SELECT JSON_SUM('[1,2,3,4,5]', '$[x]');
                      -- Result: 15

                      SELECT JSON_SUM('{"test": {"data": [1,2,3,4,5]}}', '$.test.data[x]');
                      -- Result: 15

                      SELECT JSON_SUM('{"test": {"data": [1,2,3,4,5]}}', '$.test.data[3..]');
                      -- Result: 9
                    

LEAST(int1,int2,....)

Returns the least of the supplied integers.

				SELECT LEAST(3,5,8,10,1)
				-- Result: 1			
				

LOG ( float_expression [, base ] )

Returns the natural logarithm of the specified float expression.

  • float_expression: The float expression.
  • base: The optional integer argument that sets the base for the logarithm.

                      SELECT LOG(7.3890560);
                      -- Result: 1.99999998661119
                    

LOG10 ( float_expression )

Returns the base-10 logarithm of the specified float expression.

  • float_expression: The expression of type float.

                      SELECT LOG10(10000);
                      -- Result: 4
                    

MOD(dividend,divisor)

Returns the integer value associated with the remainder when dividing the dividend by the divisor.

  • dividend: The number to take the modulus of.
  • divisor: The number to divide the dividend by when determining the modulus.

				SELECT MOD(10,3);
				-- Result: 1
				

NEGATE(real_number)

Returns the opposite to the real number input.

  • real_number: The real number to find the opposite of.

				SELECT NEGATE(10);
				-- Result: -10
				
				SELECT NEGATE(-12.4)
				--Result: 12.4
				

PI ( )

Returns the constant value of pi.

                  SELECT PI()
                  -- Result: 3.14159265358979 
                

POWER ( float_expression , y )

Returns the value of the specified expression raised to the specified power.

  • float_expression: The float expression.
  • y: The power to raise float_expression to.

                      SELECT POWER(2, 10);
                      -- Result: 1024

                      SELECT POWER(2, -2);
                      -- Result: 0.25
                    

RADIANS ( float_expression )

Returns the angle in radians of the angle in degrees.

  • float_expression: The degrees of the angle as a float expression.

                      SELECT RADIANS(180);
                      -- Result: 3.14159265358979
                    

RAND ( [ integer_seed ] )

Returns a pseudorandom float value from 0 through 1, exclusive.

  • seed: The optional integer expression that specifies the seed value. If seed is not specified, a seed value at random will be assigned.

                      SELECT RAND();
                      -- This result may be different, since the seed is randomized
                      -- Result: 0.873159630165044

                      SELECT RAND(1);
                      -- This result will always be the same, since the seed is constant
                      -- Result: 0.248668584157093
                    

ROUND ( numeric_expression [ ,integer_length] [ ,function ] )

Returns the numeric value rounded to the specified length or precision.

  • numeric_expression: The expression of a numeric data type.
  • length: The optional precision to round the numeric expression to. When this is omitted, the default behavior will be to round to the nearest whole number.
  • function: The optional type of operation to perform. When the function parameter is omitted or has a value of 0 (default), numeric_expression is rounded. When a value other than 0 is specified, numeric_expression is truncated.

                      SELECT ROUND(1.3, 0);
                      -- Result: 1

                      SELECT ROUND(1.55, 1);
                      -- Result: 1.6

                      SELECT ROUND(1.7, 0, 0);
                      -- Result: 2

                      SELECT ROUND(1.7, 0, 1);
                      -- Result: 1
                      
                      SELECT ROUND (1.24);
                      -- Result: 1.0
                    

SIGN ( numeric_expression )

Returns the positive sign (1), 0, or negative sign (-1) of the specified expression.

  • numeric_expression: The expression of an indeterminate data type except for the bit data type.

                      SELECT SIGN(0);
                      -- Result: 0

                      SELECT SIGN(10);
                      -- Result: 1

                      SELECT SIGN(-10);
                      -- Result: -1
                    

SIN ( float_expression )

Returns the trigonometric sine of the angle in radians.

  • float_expression: The float expression specifying the angle in radians.

                     SELECT SIN(1);
                     -- Result: 0.841470984807897
                    

SQRT ( float_expression )

Returns the square root of the specified float value.

  • float_expression: The expression of type float.

                      SELECT SQRT(100);
                      -- Result: 10
                    

SQUARE ( float_expression )

Returns the square of the specified float value.

  • float_expression: The expression of type float.

                      SELECT SQUARE(10);
                      -- Result: 100

                      SELECT SQUARE(-10);
                      -- Result: 100
                    

TAN ( float_expression )

Returns the tangent of the input expression.

  • float_expression: The expression of type float.

                      SELECT TAN(1);
                      -- Result: 1.5574077246549
                    

TRUNC(decimal_number,precision)

Returns the supplied decimal number truncated to have the supplied decimal precision.

  • decimal_number: The decimal value to truncate.
  • precision: The number of decimal places to truncate the decimal number to.

				SELECT TRUNC(10.3423,2);
				-- Result: 10.34
				

_ROW_NUMBER_()

Returns a row index as an additional column.

				SELECT ColumnName, _ROW_NUMBER_() FROM TableName
				-- Result: ColumnData, 0
				ColumnData2, 1
				ColumnData3, 2
				

CData Python Connector for Zoho Books

DATE Functions

CURRENT_DATE()

Returns the current date value.

                  SELECT CURRENT_DATE();
                  -- Result: 2018-02-01
                

CURRENT_TIMESTAMP()

Returns the current time stamp of the database system as a datetime value. This value is equal to GETDATE and SYSDATETIME, and is always in the local timezone.

                  SELECT CURRENT_TIMESTAMP();
                  -- Result: 2018-02-01 03:04:05
                

DATEADD (datepart , integer_number , date [, dateformat])

Returns the datetime value that results from adding the specified number (a signed integer) to the specified date part of the date.

  • datepart: The part of the date to add the specified number to. The valid values and abbreviations are
    • year (yy, yyyy)
    • quarter (qq, q)
    • month (mm, m)
    • week (wk, ww)
    • weekday (dw)
    • dayofyear (dy, y)
    • day (dd, d)
    • hour (hh)
    • minute (mi, n)
    • second (ss, s)
    • millisecond (ms)
  • number: The number to be added.
  • date: The expression of the datetime data type.
  • dateformat: The optional output date format.

                  SELECT DATEADD('d', 5, '2018-02-01');
                  -- Result: 2018-02-06

                  SELECT DATEADD('hh', 5, '2018-02-01 00:00:00');
                  -- Result: 2018-02-01 05:00:00
                

DATEDIFF ( datepart , startdate , enddate )

Returns the difference (a signed integer) of the specified time interval between the specified start date and end date.

  • datepart: The part of the date that is the time interval of the difference between the start date and end date. The valid values and abbreviations are:
    • Year (year, yyyy, yy)
    • Quarter (quarter, qq, q)
    • Month (month, mm, m)
    • Week (week, wk, ww)
    • Weekday (weekday, dw)
    • Dayofyear (dayofyear, dy, y)
    • Day (day, dd, d)
    • Hour (hour, hh)
    • Minute (minute, mi, n)
    • Second (second, ss, s)
    • Millisecond (millisecond, ms)
  • startdate: The datetime expression of the start date.
  • enddate: The datetime expression of the end date.

                  SELECT DATEDIFF('d', '2018-02-01', '2018-02-10');
                  -- Result: 9

                  SELECT DATEDIFF('hh', '2018-02-01 00:00:00', '2018-02-01 12:00:00');
                  -- Result: 12
                

DATE_FORMAT(date,format)

Returns the date or timestamp in the format specified. This function mirrors the MySQL DATE_FORMAT function.

  • date: A date or timestamp string.
  • format: The specifier string of the desired output format. The list of supported format specifiers comes from the MySQL DATE_FORMAT function (see link to MySQL documentation above).

					SELECT DATE_FORMAT('9/4/2021 3:11:53 AM','%h')
					-- Result: 03
				  

DATEFROMPARTS(integer_year, integer_month, integer_day)

Returns the datetime value for the specified year, month, and day.

  • year: The integer expression specifying the year.
  • month: The integer expression specifying the month.
  • day: The integer expression specifying the day.

                    SELECT DATEFROMPARTS(2018, 2, 1);
                    -- Result: 2018-02-01
                  

DATENAME(datepart , date)

Returns the character string that represents the specified date part of the specified date.

  • datepart: The part of the date to return. The valid values and abbreviations are year (yy, yyyy), quarter (qq, q), month (mm, m), dayofyear (dy, y), day (dd, d), week (wk, ww), weekday (dw), hour (hh), minute (mi, n), second (ss, s), millisecond (ms), microsecond (mcs), and nanosecond (ns).
  • date: The datetime expression.

                     SELECT DATENAME('yy', '2018-02-01');
                     -- Result: '2018'

                     SELECT DATENAME('dw', '2018-02-01');
                     -- Result: 'Thursday'
                   

DATEPART(datepart, date [,integer_datefirst])

Returns a character string that represents the specified date part of the specified date.

  • datepart: The part of the date to return. The valid values and abbreviations are year (yy, yyyy), quarter (qq, q), month (mm, m), dayofyear (dy, y), day (dd, d), week (wk, ww), weekday (dw), hour (hh), minute (mi, n), second (ss, s), millisecond (ms), microsecond (mcs), nanosecond (ns), ISODOW, ISO_WEEK (isoweek, isowk,isoww), and ISOYEAR.
  • date: The datetime string.
  • datefirst: The optional integer representing the first day of the week. The default is 7, Sunday.

                    SELECT DATEPART('yy', '2018-02-01');
                    -- Result: 2018

                    SELECT DATEPART('dw', '2018-02-01');
                    -- Result: 5
                  

DATETIMEFROMPARTS(integer_year, integer_month, integer_day, integer_hour, integer_minute, integer_seconds, integer_milliseconds)

Returns the datetime value for the specified date parts.

  • year: The integer expression specifying the year.
  • month: The integer expression specifying the month.
  • day: The integer expression specifying the day.
  • hour: The integer expression specifying the hour.
  • minute: The integer expression specifying the minute.
  • seconds: The integer expression specifying the seconds.
  • milliseconds: The integer expression specifying the milliseconds.

                    SELECT DATETIMEFROMPARTS(2018, 2, 1, 1, 2, 3, 456);
                    -- Result: 2018-02-01 01:02:03.456
                  

DATETIME2FROMPARTS(integer_year, integer_month, integer_day, integer_hour, integer_minute, integer_seconds, integer_fractions, integer_precision)

Returns the datetime value for the specified date parts.

  • year: The integer expression specifying the year.
  • month: The integer expression specifying the month.
  • day: The integer expression specifying the day.
  • hour: The integer expression specifying the hour.
  • minute: The integer expression specifying the minute.
  • seconds: The integer expression specifying the seconds.
  • fractions: The integer expression specifying the fractions of the second.
  • precision: The integer expression specifying the precision of the fraction.

				    SELECT DATETIME2FROMPARTS(2018, 2, 1, 1, 2, 3, 456, 3);
                    -- Result: 2018-02-01 01:02:03.456
                  

DATE_TRUNC(date, datepart)

Truncates the date to the precision of the given date part. Modeled after the Oracle TRUNC function.

  • date: The datetime string that specifies the date.
  • datepart: Refer to the Oracle documentation for valid datepart syntax.

				    SELECT DATE_TRUNC('05-04-2005', 'YY');
                    -- Result: '1/1/2005'
					
                    SELECT DATE_TRUNC('05-04-2005', 'MM');
                    -- Result: '5/1/2005'                    
                  

DATE_TRUNC2(datepart, date, [weekday])

Truncates the date to the precision of the given date part. Modeled after the PostgreSQL date_trunc function.

  • datepart: One of 'millennium', 'century', 'decade', 'year', 'quarter', 'month', 'week', 'day', 'hour', 'minute' or 'second'.
  • date: The datetime string that specifies the date.
  • weekday: The optional day of the week to use as the first day for 'week'. One of 'sunday', 'monday', etc.

                    SELECT DATE_TRUNC2('year', '2020-02-04');
                    -- Result: '2020-01-01'

                    SELECT DATE_TRUNC2('week', '2020-02-04', 'monday');
                    -- Result: '2020-02-02', which is the previous Monday
                  

DAY(date)

Returns the integer that specifies the day component of the specified date.

  • date: The datetime string that specifies the date.

                    SELECT DAY('2018-02-01');
                    -- Result: 1
                  

DAYNAME(date)

Returns the name of the day of the week of the specified date.

  • date: The datetime string that specifies the date.

                    SELECT DAYNAME('8/18/2021');
                    -- Result: Wednesday
                  

DAYOFMONTH(date)

Returns the day of the month of the given date part.
  • date: The datetime string that specifies the date.

				  SELECT DAYOFMONTH('04/15/2000');
				  -- Result: 15
				  

DAYOFWEEK(date)

Returns the day of the week of the given date part.
  • date: The datetime string that specifies the date.

				  SELECT DAYOFWEEK('04/15/2000');
				  -- Result: 7
				  

DAYOFYEAR(date)

Returns the day of the year of the given date part.
  • date: The datetime string that specifies the date.

				  SELECT DAYOFYEAR('04/15/2000');
				  -- Result: 106
				  

EOMONTH(date [, integer_month_to_add ]) or LAST_DAY(date)

Returns the last day of the month that contains the specified date with an optional offset.

  • date: The datetime expression specifying the date for which to return the last day of the month.
  • integer_month_to_add: The optional integer expression specifying the number of months to add to the date before calculating the end of the month.

                  SELECT EOMONTH('2018-02-01');
                  -- Result: 2018-02-28
                  
                  SELECT LAST_DAY('2018-02-01');
                  -- Result: 2018-02-28

                  SELECT EOMONTH('2018-02-01', 2);
                  -- Result: 2018-04-30
                

EXTRACT(date_part FROM date_column_name)

Returns the last day of the month that contains the specified date with an optional offset.

  • date_part: One of the following date components: YEAR, MONTH, DAY, HOUR, MINUTE, SECOND.
  • date_column_name: The name of a date column in a table.

                  SELECT EXTRACT(YEAR FROM DateColumn)
                  -- Result: 2021
                

FDWEEK(date)

Returns the first day of the week of the given date part.
  • date: The datetime string that specifies the date.
  • weeks to add: An optional integer expression specifying the number of months to add to the date before calculating the first day of the week.

				  SELECT FDWEEK('02-08-2018');
				  -- Result: 2/4/2018

          SELECT FDWEEK('02-08-2018', 1)
          --Result: 02/11/2018
				  

FDMONTH(date)

Returns the first day of the month of the given date part.
  • date: The datetime string that specifies the date.
  • month to add: An optional integer expression specifying the number of months to add to the date before calculating the first day of the month.

				  SELECT FDMONTH('02-08-2018');
				  -- Result: 2/1/2018

          SELECT FDMONTH('02-08-2018', 1) 
          --Result: 03/01/2018
				  

FDQUARTER(date)

Returns the first day of the quarter of the given date part.
  • date: The datetime string that specifies the date.
  • quarters to add: An optional integer expression specifying the number of months to add to the date before calculating the first day of the quarter.

				  SELECT FDQUARTER('05-08-2018');
				  -- Result: 4/1/2018

          SELECT FDQUARTER('05-08-2018',1)
          --Result: 07/01/2018
				  

FILEMODIFIEDTIME(uri)

Returns the time stamp associated with the Date Modified of the relevant file.

  • uri: An absolute path pointing to a file on the local file system.

				 SELECT FILEMODIFIEDTIME('C:/Documents/myfile.txt');
				 -- Result: 6/25/2019 10:06:58 AM
				 

FROM_DAYS(datevalue)

Returns a date derived from the number of days after 1582-10-15 (based upon the Gregorian calendar). This will be equivalent to the MYSQL FROM_DAYS function.

  • datevalue: A integer value representing the number of days since 1582-10-15.

				SELECT FROM_DAYS(736000);
				-- Result: 2/6/2015
				

FROM_UNIXTIME(time, issecond)

Returns a representation of the unix_timestamp argument as a value in YYYY-MM-DD HH:MM:SS expressed in the current time zone.

  • time: The time stamp value from epoch time. Milliseconds are accepted.
  • issecond: Indicates the time stamp value is milliseconds to epoch time.

                      SELECT FROM_UNIXTIME(1540495231, 1);
                      -- Result: 2018-10-25 19:20:31

                      SELECT FROM_UNIXTIME(1540495357385, 0);
                      -- Result: 2018-10-25 19:22:37
                    

GETDATE()

Returns the current time stamp of the database system as a datetime value. This value is equal to CURRENT_TIMESTAMP and SYSDATETIME, and is always in the local timezone.

                  SELECT GETDATE();
                  -- Result: 2018-02-01 03:04:05
                

GETUTCDATE()

Returns the current time stamp of the database system formatted as a UTC datetime value. This value is equal to SYSUTCDATETIME.

In addition, GETUTCDATE can take an optional second parameter, a date and time that are converted to UTC.

                  SELECT GETUTCDATE();
                  -- For example, if the local timezone is Eastern European Time (GMT+2)
                  -- Result: 2018-02-01 05:04:05

                  SELECT GETUTCDATE('2020/08/31 13:56:00')
                  --Result: '2020-08-31 17:56:00'
                

HOUR(date)

Returns the hour component from the provided datetime.

  • date: The datetime string that specifies the date.

				SELECT HOUR('02-02-2020 11:30:00');
				-- Result: 11
				

ISDATE(date, [date_format])

Returns 1 if the value is a valid date, time, or datetime value; otherwise, 0.

  • date: The datetime string.
  • date_format: The optional datetime format.

                      SELECT ISDATE('2018-02-01', 'yyyy-MM-dd');
                      -- Result: 1

                      SELECT ISDATE('Not a date');
                      -- Result: 0
                    

LAST_WEEK()

Returns a time stamp equivalent to exactly one week before the current date.

				SELECT LAST_WEEK();	//Assume the date is 3/17/2020	
			 -- Result: 3/10/2020 00:00:00
				

LAST_MONTH()

Returns a time stamp equivalent to exactly one month before the current date.

	
				SELECT LAST_MONTH(); //Assume the date is 3/17/2020
				-- Result: 2/17/2020 00:00:00
				

LAST_YEAR()

Returns a time stamp equivalent to exactly one year before the current date.

				SELECT LAST_YEAR();	//Assume the date is 3/17/2020	
				-- Result: 3/10/2019 00:00:00
				

LDWEEK(date)

Returns the last day of the provided week.

  • date: The datetime string.
  • weeks to add: An optional integer expression specifying the number of months to add to the date before calculating the last day of the week.

				SELECT LDWEEK('02-02-2020');
				-- Result: 2/8/2020
				

LDMONTH(date)

Returns the last day of the provided month.

  • date: The datetime string.
  • months to add: An optional integer expression specifying the number of months to add to the date before calculating the last day of the month.

				SELECT LDMONTH('02-02-2020');
				-- Result: 2/29/2020

        SELECT LDMONTH('02-08-2020', 1)
        --Result: 03/31/2020
				

LDQUARTER(date)

Returns the last day of the provided quarter.

  • date: The datetime string.
  • quarters to add: An optional integer expression specifying the number of months to add to the date before calculating the last day of the quarter.

				SELECT LDQUARTER('02-02-2020');
				-- Result: 3/31/2020

        SELECT LDQUARTER('02-02-2020',1)
        --Result: 06/30/2020
				

MAKEDATE(year, days)

Returns a date value from a year and a number of days.

  • year: The year
  • days: The number of days into the year. Value must be greater than 0.

          SELECT MAKEDATE(2020, 1);
          -- Result: 2020-01-01
        

MINUTE(date)

Returns the minute component from the provided datetime.

  • date: The datetime string that specifies the date.

				SELECT MINUTE('02-02-2020 11:15:00');
				-- Result: 15
				

MONTH(date)

Returns the month component from the provided datetime.

  • date: The datetime string that specifies the date.

				SELECT MONTH('02-02-2020');
				-- Result: 2
				

QUARTER(date)

Returns the quarter associated with the provided datetime.

  • date: The datetime string that specifies the date.

				SELECT QUARTER('02-02-2020');
				-- Result: 1
				

SECOND(date)

Returns the second component from the provided datetime.

  • date: The datetime string that specifies the date.

				SELECT SECOND('02-02-2020 11:15:23');
				-- Result: 23
				

SMALLDATETIMEFROMPARTS(integer_year, integer_month, integer_day, integer_hour, integer_minute)

Returns the datetime value for the specified date and time.

  • year: The integer expression specifying the year.
  • month: The integer expression specifying the month.
  • day: The integer expression specifying the day.
  • hour: The integer expression specifying the hour.
  • minute: The integer expression specifying the minute.

                      SELECT SMALLDATETIMEFROMPARTS(2018, 2, 1, 1, 2);
                      -- Result: 2018-02-01 01:02:00
                    

STRTODATE(string,format)

Parses the provided string value and returns the corresponding datetime.

  • string: The string value to be converted to datetime format.
  • format: A format string which describes how to interpret the first string input. A few special formats are available as well, including UNIX, UNIXMILIS, TICKS, and FILETICKS.

				SELECT STRTODATE('03*04*2020','dd*MM*yyyy');
				-- Result: 4/3/2020
				

SYSDATETIME()

Returns the current time stamp as a datetime value of the database system. It is equal to GETDATE and CURRENT_TIMESTAMP, and is always in the local timezone.

                  SELECT SYSDATETIME();
                  -- Result: 2018-02-01 03:04:05
                

SYSUTCDATETIME()

Returns the current system date and time as a UTC datetime value. It is equal to GETUTCDATE.

                  SELECT SYSUTCDATETIME();
                  -- For example, if the local timezone is Eastern European Time (GMT+2)
                  -- Result: 2018-02-01 05:04:05
                

TIMEFROMPARTS(integer_hour, integer_minute, integer_seconds, integer_fractions, integer_precision)

Returns the time value for the specified time and with the specified precision.

  • hour: The integer expression specifying the hour.
  • minute: The integer expression specifying the minute.
  • seconds: The integer expression specifying the seconds.
  • fractions: The integer expression specifying the fractions of the second.
  • precision : The integer expression specifying the precision of the fraction.

                      SELECT TIMEFROMPARTS(1, 2, 3, 456, 3);
                      -- Result: 01:02:03.456
                    

TO_DAYS(date)

Returns the number of days since 0000-00-01. This will only return a value for dates on or after 1582-10-15 (based upon the Gregorian calendar). This will be equivalent to the MYSQL TO_DAYS function.

  • date: The datetime string that specifies the date.

				SELECT TO_DAYS('02-06-2015');
				-- Result: 736000
				

WEEK(date)

Returns the week (of the year) associated with the provided datetime.

  • date: The datetime string that specifies the date.

				SELECT WEEK('02-17-2020 11:15:23');
				-- Result: 8
				

YEAR(date)

Returns the integer that specifies the year of the specified date.

  • date: The datetime string.

                      SELECT YEAR('2018-02-01');
                      -- Result: 2018
                    

CData Python Connector for Zoho Books

Date Literal Functions

The following date literal functions can be used to filter date fields using relative intervals. Note that while the <, >, and = operators are supported for these functions, <= and >= are not.

L_TODAY()

The current day.

  SELECT * FROM MyTable WHERE MyDateField = L_TODAY()

L_YESTERDAY()

The previous day.

  SELECT * FROM MyTable WHERE MyDateField = L_YESTERDAY()

L_TOMORROW()

The following day.

  SELECT * FROM MyTable WHERE MyDateField = L_TOMORROW()

L_LAST_WEEK()

Every day in the preceding week.

  SELECT * FROM MyTable WHERE MyDateField = L_LAST_WEEK()

L_THIS_WEEK()

Every day in the current week.

  SELECT * FROM MyTable WHERE MyDateField = L_THIS_WEEK()

L_NEXT_WEEK()

Every day in the following week.

  SELECT * FROM MyTable WHERE MyDateField = L_NEXT_WEEK()
Also available:
  • L_LAST/L_THIS/L_NEXT MONTH
  • L_LAST/L_THIS/L_NEXT QUARTER
  • L_LAST/L_THIS/L_NEXT YEAR

L_LAST_N_DAYS(n)

The previous n days, excluding the current day.

  SELECT * FROM MyTable WHERE MyDateField = L_LAST_N_DAYS(3)

L_NEXT_N_DAYS(n)

The following n days, including the current day.

  SELECT * FROM MyTable WHERE MyDateField = L_NEXT_N_DAYS(3)
Also available:
  • L_LAST/L_NEXT_90_DAYS

L_LAST_N_WEEKS(n)

Every day in every week, starting n weeks before current week, and ending in the previous week.

  SELECT * FROM MyTable WHERE MyDateField = L_LAST_N_WEEKS(3)

L_NEXT_N_WEEKS(n)

Every day in every week, starting the following week, and ending n weeks in the future.

  SELECT * FROM MyTable WHERE MyDateField = L_NEXT_N_WEEKS(3)
Also available:
  • L_LAST/L_NEXT_N_MONTHS(n)
  • L_LAST/L_NEXT_N_QUARTERS(n)
  • L_LAST/L_NEXT_N_YEARS(n)

CData Python Connector for Zoho Books

SELECT Statements

A SELECT statement can consist of the following basic clauses.

  • SELECT
  • INTO
  • FROM
  • JOIN
  • WHERE
  • GROUP BY
  • HAVING
  • UNION
  • ORDER BY
  • LIMIT

SELECT Syntax

The following syntax diagram outlines the syntax supported by the SQL engine of the connector:

SELECT {
  [ TOP <numeric_literal> | DISTINCT ]
  { 
    * 
    | { 
        <expression> [ [ AS ] <column_reference> ] 
        | { <table_name> | <correlation_name> } .* 
      } [ , ... ] 
  }
  { 
    FROM <table_reference> [ [ AS ] <identifier> ] 
  } [ , ... ]
  [ [  
      INNER | { { LEFT | RIGHT | FULL } [ OUTER ] } 
    ] JOIN <table_reference> [ ON <search_condition> ] [ [ AS ] <identifier> ] 
  ] [ ... ] 
  [ WHERE <search_condition> ]
  [ GROUP BY <column_reference> [ , ... ]
  [ HAVING <search_condition> ]
  [ UNION [ ALL ] <select_statement> ]
  [ 
    ORDER BY 
    <column_reference> [ ASC | DESC ] [ NULLS FIRST | NULLS LAST ]
  ]
  [ 
    LIMIT <expression>
    [ 
      { OFFSET | , }
      <expression> 
    ]
  ] 
} | SCOPE_IDENTITY() 

<expression> ::=
  | <column_reference>
  | @ <parameter> 
  | ?
  | COUNT( * | { [ DISTINCT ] <expression> } )
  | { AVG | MAX | MIN | SUM | COUNT } ( <expression> ) 
  | NULLIF ( <expression> , <expression> ) 
  | COALESCE ( <expression> , ... ) 
  | CASE <expression>
      WHEN { <expression> | <search_condition> } THEN { <expression> | NULL } [ ... ]
    [ ELSE { <expression> | NULL } ]
    END 
  | {RANK() | DENSE_RANK()} OVER ([PARTITION BY <column_reference>] {ORDER BY <column_reference>})
  | <literal>
  | <sql_function> 

<search_condition> ::= 
  {
    <expression> { = | > | < | >= | <= | <> | != | LIKE | NOT LIKE | IN | NOT IN | IS NULL | IS NOT NULL | AND | OR | CONTAINS | BETWEEN | IS DISTINCT FROM | IS NOT DISTINCT FROM } [ <expression> ]
  } [ { AND | OR } ... ] 

Examples

  1. Return all columns:
    SELECT * FROM INVOICES
  2. Rename a column:
    SELECT [InvoiceNumber] AS MY_InvoiceNumber FROM INVOICES
  3. Cast a column's data as a different data type:
    SELECT CAST(AnnualRevenue AS VARCHAR) AS Str_AnnualRevenue FROM INVOICES
  4. Search data:
    SELECT * FROM INVOICES WHERE CustomerName = 'NewTech Industries'
  5. Return the number of items matching the query criteria:
    SELECT COUNT(*) AS MyCount FROM INVOICES 
  6. Return the number of unique items matching the query criteria:
    SELECT COUNT(DISTINCT InvoiceNumber) FROM INVOICES 
  7. Return the unique items matching the query criteria:
    SELECT DISTINCT InvoiceNumber FROM INVOICES 
  8. Sort a result set in ascending order:
    SELECT InvoiceId, InvoiceNumber FROM INVOICES  ORDER BY InvoiceNumber ASC
  9. Restrict a result set to the specified number of rows:
    SELECT InvoiceId, InvoiceNumber FROM INVOICES LIMIT 10 
  10. Parameterize a query to pass in inputs at execution time. This enables you to create prepared statements and mitigate SQL injection attacks.
    SELECT * FROM INVOICES WHERE CustomerName = @param
See Explicitly Caching Data for information on using the SELECT statement in offline mode.

Pseudo Columns

Some input-only fields are available in SELECT statements. These fields, called pseudo columns, do not appear as regular columns in the results, yet may be specified as part of the WHERE clause. You can use pseudo columns to access additional features from Zoho Books.

    SELECT * FROM INVOICES WHERE Query = 'Column3 > 100'
    

Aggregate Functions

For SELECT examples using aggregate functions, see Aggregate Functions.

JOIN Queries

See JOIN Queries for SELECT query examples using JOINs.

Date Literal Functions

Date Literal Functions contains SELECT examples with date literal functions.

Window Functions

See Window Functions for SELECT examples containing window functions.

Table-Valued Functions

See Table-Valued Functions for SELECT examples with table-valued functions.

CData Python Connector for Zoho Books

Aggregate Functions

COUNT

Returns the number of rows matching the query criteria.

SELECT COUNT(*) FROM INVOICES WHERE CustomerName = 'NewTech Industries'

COUNT(DISTINCT)

Returns the number of distinct, non-null field values matching the query criteria.

SELECT COUNT(DISTINCT InvoiceId) AS DistinctValues FROM INVOICES WHERE CustomerName = 'NewTech Industries'

AVG

Returns the average of the column values.

SELECT InvoiceNumber, AVG(AnnualRevenue) FROM INVOICES WHERE CustomerName = 'NewTech Industries'  GROUP BY InvoiceNumber

MIN

Returns the minimum column value.

SELECT MIN(AnnualRevenue), InvoiceNumber FROM INVOICES WHERE CustomerName = 'NewTech Industries' GROUP BY InvoiceNumber

MAX

Returns the maximum column value.

SELECT InvoiceNumber, MAX(AnnualRevenue) FROM INVOICES WHERE CustomerName = 'NewTech Industries' GROUP BY InvoiceNumber

SUM

Returns the total sum of the column values.

SELECT SUM(AnnualRevenue) FROM INVOICES WHERE CustomerName = 'NewTech Industries'

CData Python Connector for Zoho Books

JOIN Queries

The CData Python Connector for Zoho Books supports standard SQL joins like the following examples:

Inner Join

An inner join selects only rows from both tables that match the join condition:

Joining ChartOfAccounts with BankTransactions

 SELECT ChartOfAccounts.ChartAccountId, Banktransactions.AccountId, TransactionId, ChartOfAccounts.AccountName, Banktransactions.AccountName, ChartOfAccounts.AccountType, Banktransactions.AccountType FROM ChartOfAccounts INNER JOIN banktransactions ON banktransactions.AccountId = ChartOfAccounts.ChartAccountId 
Joining ChartOfAccounts with ReportsAccountTransactionsDetails
 SELECT * FROM ChartOfAccounts INNER JOIN ReportsAccountTransactionsDetails ON ReportsAccountTransactionsDetails.AccountId = ChartOfAccounts.ChartAccountId WHERE FromDate = '2022-09-01' and ToDate = '2022-11-16' and ChartAccountId = 3519201000000000370 
Joining ChartOfAccounts with BankAccounts
 SELECT * FROM ChartOfAccounts INNER JOIN BankAccounts ON BankAccounts.AccountId = ChartOfAccounts.ChartAccountId 
Left Join

A left join selects all rows in the FROM table and only matching rows in the JOIN table:

 SELECT ChartOfAccounts.ChartAccountId, Banktransactions.AccountId, TransactionId, ChartOfAccounts.AccountName FROM ChartOfAccounts LEFT OUTER JOIN BankTransactions ON banktransactions.AccountId = ChartOfAccounts.ChartAccountId 

CData Python Connector for Zoho Books

Window Functions

Window functions allow you to create computed fields from a group of rows (a window) that return a result for each row, as opposed to one computed result for a set of rows, as is the case with aggregate functions. The connector supports the following window function syntax.

Note: Window function support is an experimental feature of the connector. This functionality extends beyond the connector's core scope of being SQL-92 compliant. As such, performance with window functions may not be optimal.

Window Function Clauses

OVER

The OVER clause defines the window over which window functions are performed.

SELECT A, B, <window function> OVER (<window frame>) FROM TableName

The <window function> refers to any supported window function clause, and the <window frame> refers to one or more clauses that specify the logic by which the window is defined.

PARTITION BY

The PARTITION BY clause subdivides a window into sub-windows called partitions. For each unique value in the column specified in the PARTITION BY clause, every record with that value collectively forms an individual partition.

SELECT A, B, <window function> OVER (PARTITION BY A ORDER BY B) From INVOICES

The <window function> refers to any supported window function clause.

Window Functions

The connector supports math, ranking, and analytic window functions.

Math

These window functions perform mathematical operations on the records within the window.

COUNT()

Calculates the number of records in each partition. The calculated column is of the data type "int".

In each partition, every record will display the total number of records in that partition.

SELECT Name, Role, Earnings, COUNT() OVER (PARTITION BY Role) FROM Employees

COUNT_BIG()

Calculates the number of records in each partition. The calculated column is of the data type "bigint".

In each partition, every record will display the total number of records in that partition.

SELECT Name, Role, Earnings, COUNT_BIG() OVER (PARTITION BY Role) FROM Employees

MIN(numeric_column)

Calculates the minimum value of a numerical column per partition.

In each partition, every record will display the minimum value of numeric_column across the records in that partition.

SELECT Name, Role, Earnings, MIN(Earnings) OVER (PARTITION BY Role) FROM Employees

MAX(numeric_column)

Calculates the maximum value of a numerical column per partition.

In each partition, every record will display the maximum value of numeric_column across the records in that partition.

SELECT Name, Role, Earnings, MAX(Earnings) OVER (PARTITION BY Role) FROM Employees

SUM(numeric_column)

Calculates the sum of a numerical column per partition.

In each partition, every record will display the sum of numeric_column across the records in that partition.

SELECT Name, Role, Earnings, SUM(Earnings) OVER (PARTITION BY Role) FROM Employees

AVG(numeric_column)

Calculates the average value of a numerical column per partition.

In each partition, every record will display the average value of numeric_column across the records in that partition.

SELECT Name, Role, Earnings, AVG(Earnings) OVER (PARTITION BY Role) FROM Employees

MEDIAN(numeric_column)

Calculates the median value of a numerical column per partition.

In each partition, every record will display the median value of numeric_column across the records in that partition.

SELECT Name, Role, Earnings, MEDIAN(Earnings) OVER (PARTITION BY Role) FROM Employees

STDEV(numeric_column)

Calculates the standard deviation of a numerical column per partition.

In each partition, every record will display the standard deviation of numeric_column across the records in that partition.

SELECT Name, Role, Earnings, STDEV(Earnings) OVER (PARTITION BY Role) FROM Employees

STDEVP(numeric_column)

Calculates the population standard deviation of a numerical column per partition.

In each partition, every record will display the population standard deviation of numeric_column across the records in that partition.

SELECT Name, Role, Earnings, STDEVP(Earnings) OVER (PARTITION BY Role) FROM Employees

VAR(numeric_column)

Calculates the statistical standard variance of a numerical column per partition.

In each partition, every record will display the statistical standard variance of numeric_column across the records in that partition.

SELECT Name, Role, Earnings, VAR(Earnings) OVER (PARTITION BY Role) FROM Employees

VARP(numeric_column)

Calculates the variance population of a numerical column per partition.

In each partition, every record will display the variance population of numeric_column across the records in that partition.

SELECT Name, Role, Earnings, VARP(Earnings) OVER (PARTITION BY Role) FROM Employees

Ranking

These window functions rank records that fall within the window and its partitions.

RANK()

Assigns a rank number to each record in a window based on the value of the column specified in the required ORDER BY clause.

If two or more records have an equal value in the in ranked column, they all receive the same rank number and the rank count increments internally, skipping ahead one rank number for each record with a duplicate value in the ORDER BY column.

SELECT InvoiceId, InvoiceNumber, RANK() OVER (ORDER BY InvoiceNumber) AS Rank FROM INVOICES

If you add a PARTITION BY clause, a separate set of ranks is calculated for each partition.

SELECT InvoiceId, InvoiceNumber, RANK() OVER (PARTITION BY InvoiceId ORDER BY InvoiceNumber) AS Rank FROM INVOICES

DENSE_RANK()

Operates like the RANK() function, but it doesn't increment the internal rank counter for each record with a duplicate value in the ranked column.

This means that, while records with identical values in the ORDER BY column still share a rank number, the function never skips a rank number.

SELECT InvoiceId, InvoiceNumber, DENSE_RANK() OVER (PARTITION BY InvoiceId ORDER BY InvoiceNumber) AS Rank FROM INVOICES

If you add a PARTITION BY clause, a separate set of ranks is calculated for each partition.

SELECT InvoiceId, InvoiceNumber, DENSE_RANK() OVER (PARTITION BY InvoiceId ORDER BY InvoiceNumber) AS Rank FROM INVOICES

ROW_NUMBER()

Calculates a row number for each record. An ORDER BY clause in the OVER clause is required.

SELECT Name, Role, Earnings, ROW_NUMBER() OVER (ORDER BY Role) FROM Employees
If you define multiple partitions with PARTITION BY, a new set of row numbers are calculated for each partition.
SELECT Name, Role, Earnings, ROW_NUMBER() OVER (PARTITION BY Role ORDER BY Earnings) FROM Employees

NTILE()

Distributes rows of an ordered partition into a specified number of approximately equal groups, or buckets. It assigns each group a bucket number starting from one. For each row in a group, the NTILE() function assigns a bucket number representing the group to which the row belongs.

The syntax of NTILE() is:

NTILE(buckets) OVER (
    [PARTITION BY partition_expression, ... ]
    ORDER BY sort_expression [ASC | DESC], ...
)
The following are paramaters that NTILE() supports:

  • buckets: The number of buckets into which the rows are divided. The buckets can be an expression or subquery that evaluates to a positive integer. It cannot be a window function.
  • PARTITION BY: distributes rows of a result set into partitions to which the NTILE() function is applied.
  • ORDER BY is clause that specifies the logical order of rows in each partition to which the NTILE() is applied.

If the number of rows is not divisible by the buckets, the NTILE() function returns groups of two sizes with the difference by one. The larger groups always precede the smaller group in the order set by ORDER BY in the OVER() clause.

If the total of rows is divisible by the number of buckets, the function divides the rows evenly among buckets. The following statement creates a new table named ntile_demo that stores 10 integers:

CREATE TABLE sales.ntile_demo (
	v INT NOT NULL
);
	
INSERT INTO sales.ntile_demo(v) 
VALUES(1),(2),(3),(4),(5),(6),(7),(8),(9),(10);	
	
SELECT * FROM sales.ntile_demo;
This statement uses the NTILE() function to divide ten rows into three groups:
SELECT 
	v, 
	NTILE (3) OVER (
		ORDER BY v
	) buckets
FROM 
	sales.ntile_demo;

Analytical

These window functions perform analytical operations on the records within the window.

PERCENT_RANK()

Calculates the relative rank SQL Percentile of each row. It returns values greater than zero, but the maximum value is one. It does not count any NULL values. This function is nondeterministic.

The syntax of PERCENT_RANK() is:

PERCENT_RANK() OVER (
      [PARTITION BY partition_expression, ... ]
      ORDER BY sort_expression [ASC | DESC], ...
  )
  
This syntax uses the following parameters.

  • PARTITION BY: By default, SQL Server treats the whole data set as a single set. You can specify the PARTITION BY clause to divide data into multiple sets. The Percent_Rank function performs the analytical calculations on each set. This parameter is optional.
  • ORDER BY: Sorts the data in either ascending or descending order. This parameter is required.

CData Python Connector for Zoho Books

Table-Valued Functions

Table-valued functions are functions that return a table (rowset).

Note: Table-valued function support is an experimental feature of the connector. This functionality extends beyond the connector's core scope of being SQL-92 compliant. As such, performance with these functions may not be optimal.

Table-Valued Function Clauses

CROSS APPLY

The CROSS APPLY operator is used to perform a subquery on each row of a table or resultset produced by a preceding table expression.

<table_expression_1> CROSS APPLY <table_expression_2>

The second table expression can reference results from the first table expression to create derived columns or an altered recordset via a table-valued function.

Each resulting record is an instance of the record it's splitting, with all the same column values, except for the column(s) containing the value split by the function.

WITH

The WITH clause is used alongside certain table-valued functions to match against constructs within the structure being split (keys, element names, attribute names, etc.) and/or to specify metadata for the columns generated from the function.
SELECT A.ColumnName, X.DerivedColumnName FROM TableName A CROSS APPLY <table-valued function> WITH (DerivedColumnName varchar(255)) AS X

Table-Valued Functions

STRING_SPLIT(input_text,delimiter)

Takes each record in the recordset of the preceding table expression, splits the column containing delimiters (input_text) into substrings separated by the delimiter, and returns one record per substring.

  • input_text: A column whose value you want to parse.
  • delimiter: The character used to split the value of the column specified in input_text.

Suppose there is a column called "SplitColumn" with the following content:

One-Two-Three
To unpack this value across multiple records:
SELECT A.ID, X.Value FROM [TableWithDelimitedStringField] A CROSS APPLY STRING_SPLIT(A.SplitColumn,'-') WITH (Value VARCHAR(255)) AS X

-- Results:
-----------
|ID|Value|
|1|One|
|1|Two|
|1|Three|

JSONTABLE(json_content,[jsonpath])

For each record in the recordset of the preceding table expression, returns one record for each instance of a key in a JSON array (json_content) that matches the key(s) specified in the WITH clause, at the scope specified by the "jsonpath" input.

  • json_content: A JSON "table" (array of objects). The contents can nest, but this must be a single JSON array, not any other JSON structure, at the root level.
    • The values of every instance of the key(s) provided in the WITH clause are retrievable only for substructures which are immediate children of the root-level JSON array.
  • jsonpath: An optional JSONPath query defining the scope, within the json_content array, that you want to pull content from. The JSON key(s) identified in the WITH clause must exist at the scope defined in this parameter. This defaults to the JSON root ($).

Consider a sample table with a single record, including an ID column and column with JSON content called "JSONColumn" with the following content:

[
	{
		"name": "Samuel",
		"email": "sam@gmail.com",
		"extrainfo": {
			"city": "Seattle"
		}
	},
	{
		"name": "Katherine",
		"email": "kat@gmail.com",
	},
	{
		"name": "George",
		"email": "george23@gmail.com",
	},
	{
		"name": "Carlos",
		"email": "carlos32@gmail.com",
	}
]

To extract all values for a certain key, specify the scope in the JSONTABLE function and provide the desired key(s) in the WITH clause.

SELECT A.ID, X.name FROM [TableWithJSONField] A CROSS APPLY JSONTABLE(A.JSONColumn) WITH (name VARCHAR(255)) AS X

-- Results: 
|ID|name|
---------
|1 |Samuel|
|1 |Katherine|
|1 |George|
|1 |Carlos|

XMLTABLE(xml_content,[xpath,child_type])

For each record in the resultset of the preceding table expression, returns one record for each of the elements and/or attributes in an XML structure (xml_content) that match the tag name(s) and/or attribute name(s) specified in the WITH clause, at the scope specified in the "xpath" input.

  • xml_content: A column containing an XML structure.
  • xpath: An optional XPath that specifies the scope within the XML structure at which the connector extracts content matching the tag/attribute name(s) specified in the WITH clause.
    • When extracting the content of sub-elements, the connector can retrieve all content from tags at the root level, (depth 0) immediate children of the root (depth 1), and children of those children (depth 2).
    • When extracting element attribute content, the connector can retrieve all content from tags containing the specified attribute at the root level (depth 0) and from immediate children of root-level elements (depth 1).
  • child_type: An optional parameter that specifies the part(s) of the parent element (specified in the xpath input) that the column(s) provided in the WITH clause are checked against to identify content.
    • You can supply the following values:
      • 0: The column(s) in the WITH clause are checked for matches against the parent element's attribute names and sub-element tag names.
      • 1: The column(s) in the WITH clause are checked for matches against the parent element's attribute names.
      • 2: The column(s) in the WITH clause are checked for matches against the parent element's sub-element tag names.
    • When not supplied, this defaults to 0.

Extracting Sub-Element Values

Consider a sample table with a single record, including an ID column and a column with XML content called "XMLContent" with the following content:
<shoppingList>
    <item>
        <name>Apples</name>
        <quantity>3</quantity>
        <unit>Kg</unit>
    </item>
    <item>
        <name>Bread</name>
        <quantity>2</quantity>
        <unit>Loaf</unit>
		<extrainfo>
			<Type>Whole-Grain</Type>
		</extrainfo>
    </item>
    <item>
        <name>Milk</name>
        <quantity>1</quantity>
        <unit>Carton</unit>
    </item>
    <item>
        <name>Eggs</name>
        <quantity>12</quantity>
        <unit></unit>
    </item>
</shoppingList>

To extract sub-element content, specify the scope in the XMLTABLE function and provide the desired element name(s) in the WITH clause. Note that this will not work if the XMLTABLE function's child_type input is set to 1.

SELECT A.ID, X.name FROM [TableWithXMLField] A CROSS APPLY XMLTABLE(A.XMLContent,'//*/item') WITH (name VARCHAR(255)) AS X

-- Results: 
|ID|name|
---------
|1|Apples|
|1|Bread|
|1|Milk|
|1|Eggs|

Extracting Values Using Element Tag Attributes

Suppose you have this sample table with a single record, including an ID column and a column with XML content called "XMLContent" with the following content:

<restaurant>
  <dish type="appetizer">
    <name lang="en">Caprese Salad</name>
    <chef>Chef Giovanni</chef>
    <price currency="USD">9.99</price>
  </dish>
  <dish type="main-course">
    <name lang="fr">Boeuf Bourguignon</name>
    <chef>Chef Marie</chef>
    <price currency="EUR">19.99</price>
  </dish>
  <dish type="dessert">
    <name lang="es">Tres Leches Cake</name>
    <chef>Chef Alejandro</chef>
    <price currency="MXN">89.99</price>
  </dish>
</restaurant>

To extract attribute content, specify the scope in the XMLTABLE function and provide the desired attribute name(s) in the WITH clause. Note that this will not work if the XMLTABLE function's child_type input is set to 2.

SELECT A.ID, X.type FROM [TableWithXMLField] A CROSS APPLY XMLTABLE(A.XMLContent,'//*/dish') WITH (type VARCHAR(255)) AS X

-- Results: 
|ID|type|
---------
|1|appetizer|
|1|main-course|
|1|dessert|

CSVTABLE(csv_content,[delimiter])

For each record in the resultset of the preceding table expression, reads from a column that contains a CSV table (csv_content) and for each record in that CSV table, returns one record containing the value of the CSV column(s) specified in the WITH clause.

  • csv_content: A column containing a CSV table.
  • delimiter: An optional custom delimiter (instead of a comma) which splits the CSV content contained in the csv_content input.

Consider a sample table with a single record, including an ID column and a column containing CSV table called "CSVContent" with the following content:

Name;Category;Price
Apple;Fruit;0.99
Spaghetti;Pasta;5.49
Chicken Breast;Meat;8.99
Broccoli;Vegetable;2.49

To select every value in the "Name" column and account for the custom delimiter (;):

SELECT A.ID, X.Name FROM [TableWithCSVField] A CROSS APPLY CSVTABLE(A.CSVContent,';') WITH (Name VARCHAR(255)) AS X

-- Results:
|ID|Name|
-----------
|1|Apple|
|1|Spaghetti|
|1|Chicken Breast|
|1|Broccoli|

CData Python Connector for Zoho Books

INSERT Statements

To create new records, use INSERT statements.

INSERT Syntax

The INSERT statement specifies the columns to be inserted and the new column values. You can specify the column values in a comma-separated list in the VALUES clause, as shown in the following example:

INSERT INTO <table_name> 
( <column_reference> [ , ... ] )
VALUES 
( { <expression> | NULL } [ , ... ] ) 
  

<expression> ::=
  | @ <parameter> 
  | ?
  | <literal>
The following is an example query:
INSERT INTO INVOICES (InvoiceNumber) VALUES ('John')

CData Python Connector for Zoho Books

UPDATE Statements

To modify existing records, use UPDATE statements.

Update Syntax

The UPDATE statement takes as input a comma-separated list of columns and new column values as name-value pairs in the SET clause, as shown in the following example:

UPDATE <table_name> SET <select_statement> | {<column_reference> = <expression> [ , ... ]} WHERE { Id = <expression>  } [ { AND | OR } ... ] 

<expression> ::=
  | @ <parameter> 
  | ?
  | <literal>

The following is an example query:

UPDATE INVOICES SET InvoiceNumber='John' WHERE Id = @myId

CData Python Connector for Zoho Books

DELETE Statements

To delete information from a table, use DELETE statements.

DELETE Syntax

The DELETE statement requires the table name in the FROM clause and the row's primary key in the WHERE clause, as shown in the following example:

<delete_statement> ::= DELETE FROM <table_name> WHERE { Id = <expression> } [ { AND | OR } ... ]

<expression> ::=
  | @ <parameter> 
  | ?
  | <literal>

The following is an example query:

DELETE FROM INVOICES WHERE Id = @myId

CData Python Connector for Zoho Books

CACHE Statements

When caching is enabled, CACHE statements provide complete control over the data that is cached and the table to which it is cached. The CACHE statement executes the SELECT statement specified and caches its results to a table with the same name in the cache database or to table specified in <cached_table_name>. The connector updates or inserts rows to the cache depending on whether or not they already exist in the cache, so the primary key, which is used to identify existing rows, must be included in the selected columns.

See Caching Data for more information on different caching strategies.

CACHE Statement Syntax

The cache statement may include the following options that alter its behavior:

CACHE [ <cached_table_name> ] [ WITH TRUNCATE | AUTOCOMMIT | SCHEMA ONLY | DROP EXISTING | ALTER SCHEMA ] <select_statement> 

WITH TRUNCATE

If this option is set, the connector removes existing rows in the cache table before adding the selected rows. Use this option if you want to refresh the entire cache table but keep its existing schema.

AUTOCOMMIT

If this option is set, the connector commits each row individually. Use this option if you want to ignore the rows that could not be cached due to some reason. By default, the entire result set is cached as a single transaction.

DROP EXISTING

If this option is set, the connector drops the existing cache table before caching the new results. Use this option if you want to refresh the entire cache table, including its schema.

SCHEMA ONLY

If this option is set, the connector creates the cache table based on the SELECT statement without executing the query.

ALTER SCHEMA

If this option is set, the connector alters the schema of the existing table in the cache if it does not match the schema of the SELECT statement. This option results in new columns or dropped columns, if the schema of the SELECT statement does not match the cached table.

Common Queries

Use the following cache statement to cache all rows of a table:

CACHE SELECT * FROM INVOICES

Use the following cache statement to cache all rows of a table into the cache table CachedINVOICES:

CACHE CachedINVOICES SELECT * FROM INVOICES

Use the following cache statement for incremental caching. The DateModified column may not exist in all tables. The cache statement shows how incremental caching would work if there were such a column. Also, notice that, in this case, the WITH TRUNCATE and DROP EXISTING options are specifically omitted, which would have deleted all existing rows.

CACHE CachedINVOICES SELECT * FROM INVOICES WHERE DateModified > '2013-04-04'

Use the following cache statements to create a table with all available columns that will then cache only a few of them. The sequence of statements cache only InvoiceId and InvoiceNumber even though the cache table CachedINVOICES has all the columns in INVOICES.

CACHE CachedINVOICES SCHEMA ONLY SELECT * FROM INVOICES
CACHE CachedINVOICES SELECT InvoiceId, InvoiceNumber FROM INVOICES

CData Python Connector for Zoho Books

EXECUTE Statements

To execute stored procedures, you can use EXECUTE or EXEC statements.

EXEC and EXECUTE assign stored procedure inputs, referenced by name, to values or parameter names.

Stored Procedure Syntax

To execute a stored procedure as an SQL statement, use the following syntax:

 
{ EXECUTE | EXEC } <stored_proc_name> 
{
  [ @ ] <input_name> = <expression>
} [ , ... ]

<expression> ::=
  | @ <parameter> 
  | ?
  | <literal>

Example Statements

Reference stored procedure inputs by name:

EXECUTE my_proc @second = 2, @first = 1, @third = 3;

Execute a parameterized stored procedure statement:

EXECUTE my_proc second = @p1, first = @p2, third = @p3; 

CData Python Connector for Zoho Books

PIVOT and UNPIVOT

PIVOT and UNPIVOT can be used to change a table-valued expression into another table.

PIVOT

PIVOT rotates a table-value expression by turning unique values from one column into multiple columns in the output. PIVOT can run aggregations where required on any column value.
PIVOT Synax

 
"SELECT 'AverageCost' AS Cost_Sorted_By_Production_Days, [0], [1], [2], [3], [4]
FROM
(
SELECT DaysToManufacture, StandardCost
FROM Production.Product
) AS SourceTable
PIVOT
(
AVG(StandardCost)
FOR DaysToManufacture IN ([0], [1], [2], [3], [4])
) AS PivotTable;"

UNPIVOT

UNPIVOT carries out nearly the opposite to PIVOT by rotating columns of a table-valued expressions into column values.
UNPIVOT Sytax

 
"SELECT VendorID, Employee, Orders
FROM
(SELECT VendorID, Emp1, Emp2, Emp3, Emp4, Emp5
FROM pvt) p
UNPIVOT
(Orders FOR Employee IN
(Emp1, Emp2, Emp3, Emp4, Emp5)
)AS unpvt;"

For further information on PIVOT and UNPIVOT, see FROM clause plus JOIN, APPLY, PIVOT (Transact-SQL)

CData Python Connector for Zoho Books

Data Model

Overview

This section shows the available API objects and provides more information on executing SQL to Zoho Books APIs.

Key Features

  • The connector models Zoho Books entities like invoices, bills, and expenses as relational views, allowing you to write SQL to query Zoho Books data.
  • Stored procedures allow you to execute operations to Zoho Books, including expense receipt, retainer invoice attachment and attachments.
  • Live connectivity to these objects means any changes to your Zoho Books account are immediately reflected when using the connector.
  • IncludeCustomFields connection property allows you to retrieve custom fields for supported views. Set this property to True, to enable this feature.

Tables

Tables describes the available tables. Tables are statically defined to model Zoho Books entities, such as Currencies, Journals, Users, and more.

Views

Views describes the available views. Views are statically defined to model Zoho Books entities, such as Invoices, Bills, Expenses, and more. Views are read-only.

Stored Procedures

Stored Procedures are function-like interfaces to Zoho Books. Stored procedures allow you to execute operations to Zoho Books, including expense receipt, retainer invoice attachment and attachments.

CData Python Connector for Zoho Books

Tables

The connector models the data in Zoho Books as a list of tables in a relational database that can be queried using standard SQL statements.

CData Python Connector for Zoho Books Tables

Name Description
BankAccounts To list, add, update and delete bank and credit card accounts for your organization.
BankRules To list, add, update and delete specified bank or credit card account Id.
BankTransactions To list, add, update and delete details involved in an account.
BaseCurrencyAdjustments To list, add, update and delete base currency adjustment.
BillDetails To list, add, update and delete details of a bill.
ChartOfAccounts To list, add, update and delete chart of accounts.
ContactDetails To list, add, update and delete a contact.
CreditNoteDetails To list, add, update and delete a Credit Note.
Currencies To list, add, update and delete currencies configured. Also, get the details of a currency.
CustomerContacts Create, Read, Update, Delete contact persons. Also, get the contact person details.
CustomerPaymentDetails To list, add, update and delete details of a payment.
CustomerPaymentsRefund Read, Insert and Update Vendor Credit Refunds.
CustomModuleFields To add columns in the custom modules created.
CustomModules In Zoho Books, you can create a custom module to record other data when the predefined modules are not sufficient to manage all your business requirements.
EstimateDetails To list, add, update and delete details of an estimate.
ExpenseDetails To list, add, update and delete details of an Expense.
InvoiceDetails To list, add, update and delete details of an invoice.
ItemDetails To list, add, update and delete details of an existing item.
Journals To list, add, update and delete journals.
OpeningBalances To list and delete opening balances.
Projects To list, add, update and delete projects.
PurchaseOrderDetails To list, add, update and delete details of a purchase order.
RecurringBillDetails To list, add, update and delete details of a bill.
RecurringExpenseDetails To list, add, update and delete details of a recurring expense.
RecurringInvoiceDetails To list, add, update and delete details of a recurring invoice.
RetainerInvoiceDetails To list, add, update and delete of a retainer invoice.
SalesOrderDetails To list, add, update and delete a sales order.
Tasks To list, add, update and delete tasks added to a project. Also, get the details of a task.
Taxes To list, add, update and delete simple and compound taxes. Also, get the details of a simple or compound tax.
TaxGroups Read, Insert, Update and Delete Tax Groups.
TimeEntries To list, add, update and delete time entries.
Users To list, add, update and delete users in the organization. Also, get the details of a user.
VendorCreditDetails To list, add, update and delete details of a vendor credit.
VendorCreditRefund Read, Insert and Update Vendor Credit Refunds.
VendorPaymentDetails To list, add, update and delete details of a Vendor Payment.
VendorPaymentsRefund Read, Insert and Update Vendor Credit Refunds.

CData Python Connector for Zoho Books

BankAccounts

To list, add, update and delete bank and credit card accounts for your organization.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • AccountId supports the '=' comparison.
  • AccountCodeAccountName supports the '=' comparison.
  • AccountType supports the '=' comparison.
  • Status supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM BankAccounts WHERE Status = 'All'

    SELECT * FROM BankAccounts WHERE AccountId = '1894343000000085314'

Insert

INSERT can be executed by specifying the AccountName, and AccountType columns. The columns that are not read-only can be inserted optionally. The following is an example of how to insert into this table.

INSERT INTO BankAccounts (AccountName, AccountType) VALUES ('testaccount1', 'bank') 

Update

UPDATE can be executed by specifying the AccountId in the WHERE Clause. The columns that are not read-only can be updated. For example:

UPDATE BankAccounts SET AccountName = 'Test Account', AccountType = 'bank' WHERE AccountId = '3285934000000264001'

Delete

DELETE can be executed by specifying the AccountId in the WHERE Clause For example:

DELETE FROM BankAccounts WHERE AccountId = '3285934000000264001'

Columns

Name Type ReadOnly References SupportedOperators Description
AccountId [KEY] String True

Id of the Bank Account.

AccountCode String False

Code of the Account.

AccountName String False

Name of the account.

AccountType String False

Type of the account.

AccountNumber String False

Number associated with the Bank Account.

Balance Decimal True

The unpaid amount.

BankBalance Decimal True

Total balance in Bank.

BankName String False

Name of the Bank.

BcyBalance Decimal True

Balance of Base Currency.

CanShowInZe Boolean True

Check if it can show in Zero Emission.

CanShowPaypalDirectIntegBanner Boolean True

Check if it can show direct integ banner.

CurrencyCode String False

Currency code of the customer's currency.

CurrencyId String False

Currencies.CurrencyId

Currency Id of the customer's currency.

CurrencySymbol String True

Currency symbol of the customer's currency.

Description String False

Description of the Account.

IsActive Boolean True

Check if bank account is active.

IsDirectPaypal Boolean True

Check if bank account is direct by paypal.

IsPrimaryAccount Boolean False

Check if the Account is Primary Account in Zoho Books.

IsPaypalAccount Boolean False

Check if the Account is Paypal Account.

PricePrecision Integer True

The precision for the price.

PaypalType String False

The type of Payment for the Paypal Account. Allowed Values : standard and adaptive.

PaypalEmailAddress String False

Email Address of the Paypal account.

RoutingNumber String False

Routing Number of the Account.

TotalUnprintedChecks Integer True

Total number of unprinted checks.

UncategorizedTransactions Integer True

Number of uncategorized transactions.

FeedsLastRefreshDate Date True

Last refresh date of the bank feeds.

CanAccessAllBranches Boolean True

Indicates whether the account can access all branches.

CanAccessAllLocations Boolean True

Indicates whether the account can access all locations.

LastImportDuplicateCount Integer True

Count of duplicate transactions from the last import.

LatestTransactionDate Date True

Date of the most recent transaction.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
Status String

Filter bills by any status.

The allowed values are All, PartiallyPaid, Paid, Overdue, Void, Open.

CData Python Connector for Zoho Books

BankRules

To list, add, update and delete specified bank or credit card account Id.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • RuleAccountId supports the '=' comparison.
  • RuleId supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM BankRules WHERE RuleAccountId = '1894553000000085382' AND RuleId = '1894553000000085386'

Columns

Name Type ReadOnly References SupportedOperators Description
RuleId [KEY] String True

Id of the rule.

RuleName String False

Name of the rule.

RuleOrder Integer True

Order of rule.

ApplyTo String False

To whom can rule be applied.

CriteriaType String False

Type of criteria0.

Criterion String False

Criterion.

RecordAs String False

Entity as which it should be recorded.

RuleAccountId String False

BankAccounts.AccountId

Id of the Bank Account.

AccountName String True

Name of the account.

TaxId String False

Taxes.TaxId

Id of a tax.

TargetAccountId String False

The account on which the rule has to be applied.

AccountId String False

BankAccounts.AccountId

Account which is involved in the rule with the target account.

CustomerId String False

Contacts.ContactId

Id of the customer or vendor.

CustomerName String True

Name of the customer or vendor.

ReferenceNumber String False

Reference number of a bank rule.

PaymentMode String True

Mode through which payment is made.

ProductType String False

Product Type associated with the Rule.

TaxAuthorityId String False

Taxes.TaxAuthorityId

Id of a tax authority.

TaxAuthorityName String True

Name of a tax authority.

TaxExemptionId String False

Id of a tax exemption.

TaxExemptionCode String True

Code of a tax exemption.

IsReverseChargeApplied Boolean True

Check if it is charged reverse.

VatTreatment String False

VAT treatment for the bank rules.

GstTreatment String True

Choose whether the bank rule is GST registered/unregistered/consumer/overseas.

TaxTreatment String True

VAT treatment for the Bank Rule.

GstNo String True

GST Number.

HsnOrSac String True

HSN Code.

DestinationOfSupply String True

Place where the goods/services are supplied to.

AutoCategorize Boolean True

Enable automatic categorization for this rule.

BranchId String True

ID of the branch associated with this rule.

BranchName String True

Name of the branch associated with this rule.

LocationId String True

ID of the location associated with this rule.

LocationName String True

Name of the location associated with this rule.

Tags String True

Tags associated with the bank rule.

VendorCountryCode String True

Country code of the vendor associated with this rule.

CData Python Connector for Zoho Books

BankTransactions

To list, add, update and delete details involved in an account.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • AccountId supports the '=' comparison.
  • TransactionType supports the '=' comparison.
  • Amount supports the '=' comparison.
  • Date supports the '=' comparison.
  • ReferenceNumber supports the '=' comparison.
  • Status supports the '=' comparison.
  • BankTransactionFilter supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM BankTransactions WHERE Status = 'All'

    SELECT * FROM BankTransactions LIMIT 5

Insert

INSERT can be executed by specifying the TransactionType, FromAccountId, ToAccountId, Amount, and CurrencyId columns. The columns that are not read-only can be inserted optionally. The following is an example of how to insert into this table.

INSERT INTO BankTransactions (TransactionType, FromAccountId, ToAccountId, Amount, CurrencyId) VALUES ('transfer_fund', '3285934000000000361', '3285934000000256009', '500', '3285934000000000099') 

Update

UPDATE can be executed by specifying the TransactionId in the WHERE Clause. The columns that are not read-only can be updated. For example:

UPDATE BankTransactions SET Amount = '300', TransactionType = 'transfer_fund' WHERE TransactionId = '3285934000000269001'

Delete

DELETE can be executed by specifying the TransactionId in the WHERE Clause For example:

DELETE FROM BankTransactions WHERE TransactionId = '3285934000000269001'

Columns

Name Type ReadOnly References SupportedOperators Description
TransactionId [KEY] String True

Id of the Transaction.

TransactionType String False

Transaction Type of the transaction.

The allowed values are deposit, refund, transfer_fund, card_payment, sales_without_invoices, expense_refund, owner_contribution, interest_income, other_income, owner_drawings, sales_return.

AccountId String False

BankAccounts.AccountId

Account id for which transactions are to be listed.

AccountName String True

Name of the account.

AccountType String True

Type of the account.

Amount Decimal False

Start and end amount, to provide a range within which the transaction amount exist.

CurrencyCode String True

Currency code of the customer's currency.

CurrencyId String False

Currencies.CurrencyId

Currency Id of the customer's currency.

CurrencySymbol String True

Currency symbol of the customer's currency.

CustomerId String False

Contacts.ContactId

Id of the customer or vendor.

CustomFields String False

Custom fields of the contact.

Date Date True

Start and end date, to provide a range within which the transaction date exist.

DebitOrCredit String True

Indicates if transaction is Credit or Debit.

Description String False

Description of the bank transactions.

Documents String False

List of files to be attached to a particular transaction.

ExcludeDescription String True

Is the description is to be excluded.

ImportedTransactionId Long True

Id of the Imported Transaction.

IsOffsetaccountMatched Boolean True

Check if Offset Account is matched.

IsPaidViaPrintCheck Boolean True

Check if paid via print check.

IsRuleExist Boolean True

Check if rule exists.

OffsetAccountName String True

Name of the offset account.

Payee String True

Information about the payee.

PricePrecision Integer True

The precision for the price.

ReferenceNumber String False

Reference Number of the transaction.

RunningBalance String True

Running balance in bank.

Source String True

Source of the bank transaction.

Status String True

Transaction status wise list view.

The allowed values are All, uncategorized, manually_added, matched, excluded, categorized.

UserId Long False

Users.UserId

Id of the User involved in the Transaction.

VendorId String True

Id of the vendor the bank transaction has been made. This field will be populated with a value only when the Transaction Id is specified.

VendorName String True

Name of the vendor the bank transaction has been made. This field will be populated with a value only when the Transaction Id is specified.

BankCharges Decimal False

Bank charges of bank transactions. This field will be populated with a value only when the Transaction Id is specified.

BcyTotal Decimal True

Total Base Currency This field will be populated with a value only when the Transaction Id is specified.

CustomerName String True

Name of the customer or vendor. This field will be populated with a value only when the Transaction Id is specified.

ExchangeRate Decimal False

Exchange rate of a bank transaction. This field will be populated with a value only when the Transaction Id is specified.

FromAccountId String False

BankAccounts.AccountId

Account Id from which bank transaction was made. This field will be populated with a value only when the Transaction Id is specified.

FromAccountTags String False

From Account Tags

ImportedTransactions String True

Imported bank transations. This field will be populated with a value only when the Transaction Id is specified.

IsInclusiveTax Boolean False

Check if bank transaction is invlusive tax. This field will be populated with a value only when the Transaction Id is specified.

IsPreGst Boolean True

Check if bank transaction is pre GST. This field will be populated with a value only when the Transaction Id is specified.

PaymentMode String False

Mode through which payment is made. This field will be populated with a value only when the Transaction Id is specified.

SubTotal Decimal True

Sub total of bank transactions This field will be populated with a value only when the Transaction Id is specified.

Tags String False

Details of tags related to bank transactions. This field will be populated with a value only when the Transaction Id is specified.

TaxAmount Decimal True

Amount of tax. This field will be populated with a value only when the Transaction Id is specified.

TaxId String False

Taxes.TaxId

Id of tax. This field will be populated with a value only when the Transaction Id is specified.

TaxName String True

Name of tax. This field will be populated with a value only when the Transaction Id is specified.

TaxPercentage Integer True

Percentage of tax. This field will be populated with a value only when the Transaction Id is specified.

ToAccountId String False

BankAccounts.AccountId

Account Id the transaction was made to. This field will be populated with a value only when the Transaction Id is specified.

ToAccountName String True

Account name the transaction was made to. This field will be populated with a value only when the Transaction Id is specified.

Total Decimal True

Total of bank transactions. This field will be populated with a value only when the Transaction Id is specified.

ToAccountTags String False

To Account Tags

RuleId String True

BankRules.RuleId

RuleId

RuleName String True

RuleName

RuleDetails String True

RuleDetails

IsAutoCategorized Boolean True

Indicates whether the transaction was automatically categorized.

IsExcludedBySystem Boolean True

Indicates whether the transaction was automatically excluded by the system.

OffsetAccountCode String True

Code of the offset account.

PayrollTaxGroupFormatted String True

Formatted payroll tax group information.

ReconcileStatus String True

Status of the transaction reconciliation.

RunningBalanceFormatted String True

Formatted running balance of the account after this transaction.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
BankTransactionFilter String

Filters the transactions based on the allowed types.

The allowed values are Status.All, Status.Uncategorized, Status.Categorized, Status.ManuallyAdded, Status.Excluded, Status.Matched.

CData Python Connector for Zoho Books

BaseCurrencyAdjustments

To list, add, update and delete base currency adjustment.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • BaseCurrencyAdjustmentId supports the '=' comparison.
  • BaseCurrencyAdjustmentsFilter supports the '=' comparison.

By default, response shows the base currency adjustments of the current month only.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM BaseCurrencyAdjustments WHERE BaseCurrencyAdjustmentsFilter = 'Date.All'

Columns

Name Type ReadOnly References SupportedOperators Description
BaseCurrencyAdjustmentId [KEY] String True

Id of a base currency adjustment.

CurrencyCode String True

Currency code of the customer's currency.

CurrencyId String False

Currencies.CurrencyId

Currency Id of the customer's currency.

AdjustmentDate Date False

Date of currency adjustment.

ExchangeRate Decimal False

Exchange rate of currency adjustment.

GainOrLoss Decimal True

Check the amount if gain or loss.

Notes String False

Notes of Base cuurrency adjustments.

AccountIds String False

BankAccounts.AccountId

Id of the accounts for which base currency adjustments need to be posted.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
BaseCurrencyAdjustmentsFilter String

Filter base currency adjustment list.

The allowed values are Date.All, Date.Today, Date.ThisWeek, Date.ThisMonth, Date.ThisQuarter, Date.ThisYear.

CData Python Connector for Zoho Books

BillDetails

To list, add, update and delete details of a bill.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following column and operator:

  • BillId supports the the '=' and IN operators.

NOTE: BillId is required to query BillDetails.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM BillDetails WHERE BillId = '1894553000000085259'
	SELECT * FROM BillDetails WHERE BillId IN (SELECT BillId FROM Bills)
	SELECT * FROM BillDetails WHERE BillId IN ('1894553000000085259','1894553000000085260')

Insert

INSERT can be executed by specifying BillNumber, VendorId, LineItems columns. The columns that are not read-only can be inserted optionally. The following is an example of how to insert into this table.

INSERT INTO BillLineItems#TEMP (Name, accountid, itemid) VALUES ('Cloth-Jeans', '3285934000000034001', '3285934000000104097')

INSERT INTO BillDetails (BillNumber, VendorId, lineitems) VALUES ('00011', '3285934000000104023', BillLineItems#TEMP )

INSERT can also be executed by specifying the LineItems column as a JSON array. The following is an example of how to insert using JSON array into this table.

INSERT INTO BillDetails (BillNumber, VendorId, lineitems) VALUES ('00011', '3255827000000081003', '[{"Name":"Cloth-Jeans3", "AccountId":"3285934000000034001", "ItemId":"3285934000000104097"}]')

Update

UPDATE can be executed by specifying the BillId in the WHERE Clause. The columns that are not read-only can be updated. For example:

INSERT INTO BillLineItems#TEMP (Name,accountid,itemid) VALUES ('Cloth-Jeans','3285934000000034001','3285934000000104097')

UPDATE BillDetails SET BillNumber = '00011', VendorId = '3285934000000104023', lineitems = 'BillLineItems#TEMP' WHERE BillId = '3350895000000089001'

UPDATE can also be executed by specifying the LineItems column as a JSON array. The following is an example of how to update using JSON array into this table.

UPDATE BillDetails SET BillNumber = '00011', VendorId = '3285934000000104023', LineItems = '[{"Name":"Cloth-Jeans", "AccountId":"3285934000000034001", "ItemId":"3285934000000104097"}]' WHERE BillId = '3350895000000089001'

Delete

DELETE can be executed by specifying the BillId in the WHERE Clause For example:

DELETE FROM BillDetails WHERE BillId = '3350895000000089001'

Columns

Name Type ReadOnly References SupportedOperators Description
BillId [KEY] String True

Bills.BillId

Id of a Bill.

BillNumber String False

Number of a Bill.

Adjustment Decimal False

Adjustments made to the bill.

Approvers String False

Approvers.

AdjustmentDescription String False

Description of adjustments made to the bill.

AllocatedLandedCosts String True

Allocated landed costs of bill.

ApproverId String True

Users.UserId

Id of an approver.

AttachmentName String True

Name of an attachment.

Balance Decimal True

Balance of bill.

BillingAddress String True

Billing address of a bill.

BillingAddressAttention String True

Name of a person in billing address.

BillingAddressCity String True

City of a billing address.

BillingAddressCountry String True

Country of a billing address.

BillingAddressFax String True

Fax of a billing address.

BillingAddressPhone String True

Phone of a billing address.

BillingAddressState String True

State of a billing address.

BillingAddressStreet2 String True

Street two of a billing address.

BillingAddressZip String True

Zip of a billing address.

CanAmmendTransaction Boolean True

Can ammend transaction.

CanSendInMail Boolean True

Can the file be sent in mail.

ClientViewedTime String True

Time when client viewed.

ColorCode String True

Color code.

ContactCategory String True

Category if contact.

CreatedById String True

Users.UserId

Id of a user who has created bill.

CreatedTime Datetime True

Time at which the bill was created.

CurrencyCode String True

Currency code of the customer's currency.

CurrencyId String True

Currencies.CurrencyId

Currency Id of the customer's currency.

CurrencySymbol String True

Symbol of the currency.

CurrentSubStatus String True

Current sub status of a bill.

CurrentSubStatusId String True

Current sub status Id of a bill.

CustomFields String False

Custom fields of the contact.

Documents String False

List of files to be attached to a particular transaction.

Date Date False

Bill date.

DestinationOfSupply String False

Place where the goods/services are supplied to.

Discount String True

Discount of bills.

DiscountAccountId String True

BankAccounts.AccountId

Account Id of discount.

DiscountAmount Decimal True

Amount of discount.

DiscountAppliedOnAmount Decimal True

Discount applied on amount.

DiscountSetting String True

Setting of discount.

DueByDays Integer True

Number of days the bill is due by.

DueDate Date False

Delivery date of the bill.

DueInDays String True

Number of days the bill is due in.

EntityType String True

Entity type of the bill.

ExchangeRate Decimal False

Exchange rate of the currency.

FiledInVatReturnId String True

VAT return Id of bill which was filed.

FiledInVatReturnName String True

VAT return name of bill which was filed.

FiledInVatReturnType String True

VAT return type of bill which was filed.

GstNo String False

GST number.

GstReturnDetailsReturnPeriod String True

Return period of GST.

GstReturnDetailsStatus String True

Status of GST return details.

GstTreatment String False

Choose whether the bill is GST registered/unregistered/consumer/overseas.

HasNextBill Boolean True

Check if it has next bill.

InvoiceConversionType String True

Type of invoice conversion.

IsApprovalRequired Boolean True

Check of the approval required.

IsDiscountBeforeTax Boolean True

Check if discount should be applied before tax.

IsInclusiveTax Boolean False

Check if the tax is inclusive in the bill.

IsItemLevelTaxCalc Boolean False

Check if the item leven tax is calculated.

IsLineItemInvoiced Boolean True

Check if the line item is invoiced in the bill.

IsPreGst Boolean True

Check if pre GST is applied.

IsReverseChargeApplied Boolean True

Check if reverse charge is applied.

IsTdsAmountInPercent Boolean True

Check if the TDS amount in percent.

IsTdsApplied Boolean True

Check if TDS is applied.

IsUpdateCustomer Boolean False

Check if cutomer should be updated.

IsViewedByClient Boolean True

Check if bill is viewed by client.

LastModifiedId String True

Id when bill was last modified.

LastModifiedTime Datetime True

The time of last modification of the bill.

LineItems String False

Line items of an estimate.

Notes String False

Notes of the bill.

OpenPurchaseordersCount Integer True

Count of open purchase order.

Orientation String True

Orientation of the bill.

PurchaseOrderIds String False

Purchase Order Ids.

PageHeight String True

Height of the page.

PageWidth String True

Width o the page.

PaymentExpectedDate Date True

Date when the payment is expected.

PaymentMade Decimal True

Amount paid of this bill.

PaymentTerms Integer False

Net payment term for the customer.

PaymentTermsLabel String False

Label for the paymet due details.

PricePrecision Integer True

The precision for the price.

PricebookId String False

Enter Id of the price book.

PlaceOfSupply String False

The place of supply is where a transaction is considered to have occurred for VAT purposes.

PermitNumber String False

The permit number for the bill.

RecurringBillId String False

Id of a recurring bill.

ReferenceBillId String True

Id of a reference bill.

ReferenceId String True

Id of a reference.

ReferenceNumber String False

Number of a reference.

SourceOfSupply String False

Place from where the goods/services are supplied.

Status String True

Status of the bill.

SubTotal Decimal True

Sub total of bills.

SubTotalInclusiveOfTax Decimal True

Subtotal amount which are inclusive of tax.

SubmittedBy String True

Detail of the user who has submitted the bill.

SubmittedByEmail String True

Email of the user who has submitted the bill.

SubmittedByName String True

Name of the user who has submitted the bill.

SubmittedDate Date True

Bill submitted date.

SubmitterId String True

Users.UserId

Id of a submitter.

Taxes String False

Taxes.

TaxAccountId String True

BankAccounts.AccountId

Account Id of tax.

TaxTotal Decimal True

Total amount of tax.

TaxTreatment String False

VAT treatment for the Bill.

TdsAmount Decimal True

Amount of TDS.

TdsPercent String True

Percent of TDS.

TdsSection String True

Section of TDS.

TdsTaxId String True

Tax Id of TDS.

TdsTaxName String True

Tax name of TDS.

TemplateId String True

Id of a template.

TemplateName String True

Name of a template.

TemplateType String True

Type of a template.

Terms String False

Terms and Conditions apply of a bill.

Total Decimal True

Total of bills.

TrackDiscountInAccount Boolean True

Track discount in account.

UnallocatedLandedCosts String True

Costs of unlocated land.

UnprocessedPaymentAmount Decimal True

Unprocessed payment amount.

UnusedCreditsPayableAmount Decimal True

Payable amount of unused credits.

VatTreatment String False

VAT treatment for the bills.

VendorCreditsApplied Decimal True

Amount of applied vendor credits.

VendorId String False

Id of the vendor the bill has been made.

VendorName String True

Name of the vendor the bill has been made.

BillOrderType String True

Order Type of the bill has been made.

BillingAddressId String True

Id of the Billing Address.

CurrencyNameFormatted String True

Name of the currency the bill has been made.

DiscountAccountName String True

Name of the account used for discount in this bill.

DiscountType String True

Type of discount applied.

Source String True

Source of supply of bill.

Attachments String True

Place from where the goods/services are supplied.

ApproverList String True

List of approvers who approves the bill.

TcsAmount Decimal True

TCS (Tax Collected at Source) amount for the bill.

TcsPercent Decimal True

TCS Percent value, if applicable.

TcsSection String True

TCS section code for bill.

TcsTaxId String True

ID of the TCS tax applied.

TcsTaxName String True

Name of the TCS tax applied.

SubmittedByPhotoUrl String True

Photo URL of the user who submitted the bill.

TaxOverridePreference String True

Preference setting for tax override on the bill.

TaxRounding String True

Tax rounding method applied to the bill.

TdsCalculationType String True

Calculation type for TDS, like 'tds_entity_level'.

TdsOverridePreference String True

Override preference for TDS on this bill.

SubStatuses String True

List of sub-statuses for the bill, in JSON format.

TdsSummary String True

Summary of TDS applied, in JSON format.

IsBillReconciliationViolated Boolean True

Indicates if there is a violation in the bill reconciliation process

IsTallyBill Boolean True

Indicates if the bill was imported from Tally accounting software

IsUberBill Boolean True

Indicates if the bill is from Uber for Business integration

Payments String True

Payments that has been madde to the bill has been made.

VendorCredits String True

Vendor Credit of the bill.

CreditNotes String True

list of all the Credit Notes to the bill has been made.

PurchaseOrders String True

list of all the Credit Notes to the bill has been made.

ScannedPoNumber Integer True

PO Number of the bill.

SubjectContent String True

Content for the subject of the bill.

CData Python Connector for Zoho Books

ChartOfAccounts

To list, add, update and delete chart of accounts.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • LastModifiedTime supports the '=' comparison.
  • ShowBalance supports the '=' comparison.
  • AccountType supports the '=' comparison.

You can also provide criteria to search for matching uncategorized transactions.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM ChartOfAccounts WHERE AccountType = 'All' AND ShowBalance = true

Insert

INSERT can be executed by specifying the AccountName, AccountType, and CurrencyId columns. The columns that are not read-only can be inserted optionally. The following is an example of how to insert into this table.

INSERT INTO ChartOfAccounts (AccountName, AccountType, CurrencyId) VALUES ('Cash3', 'Assets', '3285934000000000099') 

Update

UPDATE can be executed by specifying the ChartAccountId in the WHERE Clause. The columns that are not read-only can be updated. For example:

UPDATE ChartOfAccounts SET AccountName = 'Cash4', AccountType = 'Cash', CurrencyId = '3285934000000000099' WHERE ChartAccountId = '3285934000000281053'

Delete

DELETE can be executed by specifying the ChartAccountId in the WHERE Clause For example:

DELETE FROM ChartOfAccounts WHERE ChartAccountId = '32859340000002810531'

Columns

Name Type ReadOnly References SupportedOperators Description
ChartAccountId [KEY] String True

BankAccounts.AccountId

Id of the Bank Account.

AccountName String False

Name of the account.

AccountType String False

Type of the account. Allowed values for filter: All,Active,Inactive,Asset,Liability,Equity,Income,Expense. Allowed values for insert/update: other_asset, other_current_asset, cash, bank, fixed_asset, other_current_liability, credit_card, long_term_liability, other_liability, equity, income, other_income, expense, cost_of_goods_sold, other_expense, accounts_receivable, accounts_payable

The allowed values are All, Active, Inactive, Asset, Liability, Equity, Income, Expense.

CanShowInZe Boolean False

Check if it can show in Zero Emission.

ChildCount String True

Child count in chart of accounts.

CreatedTime Datetime True

Time at which the Chart of Accounts was created.

CustomFields String True

Custom Fields defined for the chart of account

CurrencyId String False

Currencies.CurrencyId

Currency Id of the customer's currency.

Depth Integer True

Depth of account.

Description String False

Description of the Chart of Account.

Documents String True

Documents of the Chart of Account.

HasAttachment Boolean True

Check if the chart of account has attachment.

IsActive Boolean True

Check if chart of account is active.

IsChildPresent Boolean True

Check if the child is present in chart of account.

IsStandaloneAccount Boolean True

Check if the account is standalone account.

IsUserCreated Boolean True

Check if the account is created by the user.

LastModifiedTime Datetime True

Last Modified time associated with the entity.

ParentAccountName String True

Account name of parent.

AccountCode String False

Code of the Account.

ClosingBalance Decimal True

Closing balance of account. This field will be populated with a value only when the Chart Account Id is specified.

IsInvolvedInTransaction Boolean True

Check if this account is involved in the transaction.

IsSystemAccount Boolean True

Check if it is a system account.

IsDebit Boolean True

Check if this account is debit. This field will be populated with a value only when the Chart Account Id is specified.

IncludeInVatReturn Boolean False

Boolean to include an account in VAT returns.

ParentAccountId String True

BankAccounts.AccountId

Id of a Parent account.

ShowOnDashboard Boolean False

Show on dashboard.

Transactions String True

Transactions

AccountTypeFormatted String True

Formatted display name of the account type.

ClosingBalanceFormatted String True

Formatted display of the closing balance including currency symbol.

Status String True

Current status of the account.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
ShowBalance Boolean

Boolean to get current balance of accounts.

CData Python Connector for Zoho Books

ContactDetails

To list, add, update and delete a contact.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following column and operator:

  • ContactId supports the '=' and IN operators.

NOTE: ContactId is required to query ContactDetails.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM ContactDetails WHERE ContactId = '1894952000000071009'
	SELECT * FROM ContactDetails WHERE ContactId IN (SELECT ContactId FROM Contacts)
	SELECT * FROM ContactDetails WHERE ContactId IN ('1894952000000071009','1894952000000071010')

Insert

INSERT can be executed by specifying the ContactName column. The columns that are not read-only can be inserted optionally. The following is an example of how to insert into this table.

INSERT INTO ContactDetails (ContactName) VALUES ('test4') 

Update

UPDATE can be executed by specifying the ContactId in the WHERE Clause. The columns that are not read-only can be updated. For example:

UPDATE ContactDetails SET ContactName = 'Name Change' WHERE ContactId = '3350895000000089005'

Delete

DELETE can be executed by specifying the ContactId in the WHERE Clause For example:

DELETE FROM ContactDetails WHERE ContactId = '3350895000000089001'

Columns

Name Type ReadOnly References SupportedOperators Description
ContactId [KEY] String True

Contacts.ContactId

Id of a contact.

AchSupported Boolean True

Check if ACH is supported.

AssociatedWithSquare Boolean True

Check if the contact is associated with square.

BankAccounts String True

Bank accounts of a contact.

BillingAddress String False

Billing address of a contact.

BillingAddressId String False

ContactAddresses.AddressId

Id of a billing address.

BillingAddressAttention String False

Name of a person in billing address.

BillingAddressCity String False

City of a billing address.

BillingAddressCountry String False

Country of a billing address.

BillingAddressFax String False

Fax of a billing address.

BillingAddressPhone String False

Phone number of a billing address.

BillingAddressState String False

State of a billing address.

BillingAddressStateCode String False

State code of a billing address.

BillingAddressStreet2 String False

Street two of a billing address.

BillingAddressZip String False

ZIP code of a billing address.

CanShowCustomerOb Boolean True

Check if contact can show customer ob.

CanShowVendorOb Boolean True

Check if contact can show vendor ob.

Cards String True

Cards

Checks String True

Checks

CompanyName String False

Name of the company.

ContactType String False

Contact type of the contact.

ContactCategory String True

Category of this contact.

ContactName String False

Display Name of the contact. Max-length [200].

ContactPersons String False

Contact persons of a contact.

CustomFields String False

Custom fields of the contact.

ContactSalutation String True

Salutation of a contact.

CreatedTime Datetime True

Time at which the contact was created.

CreditLimit Decimal False

Credit limit for a customer.

CreditLimitExceededAmount Decimal True

Amount if the credit limit exceeded.

CurrencyId String False

Currency Id of the customer's currency.

CurrencyCode String True

Currency code of the customer's currency.

CurrencySymbol String True

Currency symbol of the customer's currency.

CustomerSubType String False

Sub type of a customer.

DefaultTemplatesBillTemplateId String False

Id of a bill template in default template.

DefaultTemplatesBillTemplateName String True

Name of a bill template in default template.

DefaultTemplatesCreditnoteEmailTemplateId String False

Id of a credit note email template in default template.

DefaultTemplatesCreditnoteEmailTemplateName String True

Name of a credit note email template in default template.

DefaultTemplatesCreditnoteTemplateId String False

Id of a credit note template in default template.

DefaultTemplatesCreditnoteTemplateName String True

Name of a credit note template in default template.

DefaultTemplatesEstimateEmailTemplateId String False

Id of a estimate email template in default template.

DefaultTemplatesEstimateEmailTemplateName String True

Name of a estimate email template in default template.

DefaultTemplatesEstimateTemplateId String False

Id of a estimate template in default template.

DefaultTemplatesEstimateTemplateName String True

Name of a estimate template in default template.

DefaultTemplatesInvoiceEmailTemplateId String False

Id of a invoice email template in default template.

DefaultTemplatesInvoiceEmailTemplateName String True

Name of a invoice email template in default template.

DefaultTemplatesInvoiceTemplateId String False

Id of a invoice template in default template.

DefaultTemplatesInvoiceTemplateName String True

Name of a invoice template in default template.

DefaultTemplatesPaymentRemittanceEmailTemplateId String False

Id of a payment remittance template in default template.

DefaultTemplatesPaymentRemittanceEmailTemplateName String True

Name of a payment remittance template in default template.

DefaultTemplatesPaymentthankyouEmailTemplateId String False

Id of a payment thank you email template in default template.

DefaultTemplatesPaymentthankyouEmailTemplateName String True

Name of a payment thank you email template in default template.

DefaultTemplatesPaymentthankyouTemplateId String False

Id of a payment thank you template in default template.

DefaultTemplatesPaymentthankyouTemplateName String True

Name of a payment thank you template in default template.

DefaultTemplatesPurchaseorderEmailTemplateId String False

Id of a purchase order email template in default template.

DefaultTemplatesPurchaseorderEmailTemplateName String True

Name of a purchase order email template in default template.

DefaultTemplatesPurchaseorderTemplateId String False

Id of a purchase order template in default template.

DefaultTemplatesPurchaseorderTemplateName String True

Name of a purchase order template in default template.

DefaultTemplatesSalesorderEmailTemplateId String False

Id of a sales order email template in default template.

DefaultTemplatesSalesorderEmailTemplateName String True

Name of a sales order email template in default template.

DefaultTemplatesSalesorderTemplateId String False

Id of a sales order template in default template.

DefaultTemplatesSalesorderTemplateName String True

Name of a sales order template in default template.

Department String True

Department

Designation String True

Designation

Email String True

Email Id of a contact.

ExchangeRate Decimal True

Exchange rate of the currency.

Facebook String False

Facebook profile account. max-length [100].

HasTransaction Boolean True

Check if this contact has transaction.

IsClientReviewAsked Boolean True

Check if the client review is asked.

IsClientReviewSettingsEnabled Boolean True

Check if the client review settings is enabled for this contact.

IsSmsEnabled Boolean True

Check if SMS is enabled.

IsAddedInPortal Boolean True

To enable client portal for the contact. Allowed value is true and false.

LanguageCode String False

Language code used for a contact.

LastModifiedTime Datetime True

The time of last modification of the contact.

Mobile String True

Mobile number of a contact.

Notes String False

Notes of a contact.

OpeningBalanceAmount Decimal True

Opening balance amount of a contact.

OpeningBalanceAmountBcy Decimal True

Base Currency of Opening balance amount of a contact.

OutstandingPayableAmount Decimal True

Outstanding OB payable amount of a contact.

OutstandingReceivableAmount Decimal True

Outstanding OB receivable amount of a contact.

OwnerId String False

Id of the owner.

OwnerName String True

Name of the owner.

PaymentReminderEnabled Boolean True

Check if payment reminder is enabled.

PaymentTerms Integer False

Net payment term for the customer.

PaymentTermsLabel String False

Label for the paymet due details.

Phone String False

Phone

PortalStatus String True

Status of a portal.

PricePrecision Integer True

The precision for the price.

PricebookId String True

Id of a price book.

PricebookName String True

Name of a price book.

PrimaryContactId String True

Primary Id of a contact.

SalesChannel String True

Channel of sales.

ShippingAddress String False

Shipment Address.

ShippingAddressId String True

ContactAddresses.AddressId

Id of a shipping address.

ShippingAddressAttention String False

Name of a person of shipping address.

ShippingAddressCity String False

City of a shipping address.

ShippingAddressCountry String False

Country of a shipping address.

ShippingAddressFax String False

Fax of a shipping address.

ShippingAddressPhone String False

Phone number of a shipping address.

ShippingAddressState String False

State of a shipping address.

ShippingAddressStateCode String False

State code of a shipping address.

ShippingAddressStreet2 String False

Street two details of a shipping address.

ShippingAddressZip String False

Zip code of a shipping address.

Source String True

Source of the contact.

Status String True

Status of the contact.

Twitter String False

Twitter account.

TaxAuthorityName String False

Enter tax authority name.

Tags String False

Tags.

UnusedCreditsPayableAmount Decimal True

Payable amount of Unused credits of a contact.

UnusedCreditsPayableAmountBcy Decimal True

Base Currency Payable amount of Unused credits of a contact.

UnusedCreditsReceivableAmount Decimal True

Receivable amount of Unused credits of a contact.

UnusedCreditsReceivableAmountBcy Decimal True

Base Currency Receivable amount of Unused credits of a contact.

UnusedRetainerPayments Decimal True

Payment of the contact which is unused.

VendorCurrencySummaries String True

VendorCurrencySummaries

Website String False

Link of a website.

Addresses String True

List of addresses associated with the contact.

ApproverId String True

ID of the approver.

ApproversList String True

List of approvers.

BillingAddressCountryCode String True

Country code of billing address.

ConsentDate Date True

Date when consent was given.

ContactTaxInformation String True

Tax information of the contact.

CreatedByName String True

Name of the user who created the contact.

CreatedDate Date True

Date when the contact was created.

CrmOwnerId String True

ID of the CRM owner.

CustomerCurrencySummaries String True

Currency summaries for customer.

DefaultTemplatesStatementTemplateId String False

ID of the statement template.

DefaultTemplatesStatementTemplateName String True

Name of the statement template.

Documents String True

Documents associated with the contact.

EntityAddressId String True

ID of the entity address.

FirstName String True

First name of the contact.

IntegrationReferences String True

Integration references.

InvitedBy String True

User who invited the contact.

IsBcyOnlyContact Boolean True

Whether contact is BCY only.

IsConsentAgreed Boolean True

Whether consent is agreed.

IsCreditLimitMigrationCompleted Boolean True

Whether credit limit migration is completed.

IsCrmCustomer Boolean True

Whether contact is a CRM customer.

IsLinkedWithZohoCRM Boolean True

Whether contact is linked with Zoho CRM.

LanguageCodeFormatted String True

Formatted language code.

LastName String True

Last name of the contact.

LegalName String False

Legal name of the contact.

MsmeType String True

MSME type of the contact.

OpeningBalances String False

Opening balances.

OutstandingObPayableAmount Decimal True

Outstanding opening balance payable amount.

OutstandingObReceivableAmount Decimal True

Outstanding opening balance receivable amount.

OutstandingPayableAmountBcy Decimal True

Outstanding payable amount in base currency.

OutstandingReceivableAmountBcy Decimal True

Outstanding receivable amount in base currency.

PanNo String True

PAN number of the contact.

PaymentTermsId String True

ID of payment terms.

PortalReceiptCount Integer True

Count of portal receipts.

ShippingAddressCountryCode String True

Country code of shipping address.

ShippingAddressCounty String True

County of shipping address.

ShippingAddressLatitude String True

Latitude of shipping address.

ShippingAddressLongitude String True

Longitude of shipping address.

SubmittedBy String True

User who submitted the contact.

SubmittedByEmail String True

Email of the submitter.

SubmittedByName String True

Name of the submitter.

SubmittedByPhotoUrl String True

Photo URL of the submitter.

SubmittedDate Date True

Date when the contact was submitted.

SubmitterId String True

ID of the submitter.

TaxRegLabel String True

Tax registration label.

TdsTaxId String False

TDS tax ID.

TraderName String True

Name of the trader.

UdyamRegNo String True

Udyam registration number.

VpaList String True

List of VPA accounts.

ZcrmAccountId String True

Zoho CRM account ID for the contact.

ZcrmContactId String True

Zoho CRM contact ID for the contact.

ZohopeopleClientId String True

Zoho People client ID.

CData Python Connector for Zoho Books

CreditNoteDetails

To list, add, update and delete a Credit Note.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following column and operator:

  • CreditnoteId supports the '=' and IN operators.

NOTE: CreditnoteId is required to query CreditNoteDetails.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM CreditNoteDetails WHERE CreditnoteId = '1895452000000083136'
	SELECT * FROM CreditNoteDetails WHERE CreditNoteId IN (SELECT CreditNoteId FROM CreditNotes)
	SELECT * FROM CreditNoteDetails WHERE CreditnoteId IN ('1895452000000083136','1895452000000083137')

Insert

INSERT can be executed by specifying the CustomerId, Date, LineItems, and CreditnoteNumber columns. The columns that are not read-only can be inserted optionally. The following is an example of how to insert into this table.

INSERT INTO CreditNoteLineItems#TEMP (Name, accountid, itemid) VALUES ('Cloth-Jeans', '3285934000000034001', '3285934000000104097')

INSERT INTO CreditNoteDetails (customerid, date, lineitems, creditnotenumber) VALUES ('3285934000000085043', '2023-01-18', CreditNoteLineItems#Temp, 'CN-100')

INSERT can also be executed by specifying the LineItems column as a JSON array. The following is an example of how to insert using JSON array into this table.

INSERT INTO CreditNoteDetails (CustomerId, Date, LineItems, CreditNoteNumber) VALUES ('3255827000000081003', '2023-01-18', '[{"Name":"Cloth-Jeans3", "AccountId":"3285934000000034001", "ItemId":"3285934000000104097"}]', 'CN-100')

Update

UPDATE can be executed by specifying the CreditNoteId in the WHERE Clause. The columns that are not read-only can be updated. For example:

INSERT INTO CreditNoteLineItems#TEMP (Name,accountid,itemid) VALUES ('Cloth-Jeans1','3285934000000034001','3285934000000104097')

UPDATE CreditNoteDetails SET customerid = '3285934000000085043', date = '2023-01-17', lineitems = 'CreditNoteLineItems#Temp' WHERE creditnoteid = '3285934000000265005'

UPDATE can also be executed by specifying the LineItems column as a JSON array. The following is an example of how to update using JSON array into this table.

UPDATE CreditNoteDetails SET CustomerId = '3285934000000085043', Date = '2023-01-17', LineItems = '[{"Name":"Cloth-Jeans", "AccountId":"3285934000000034001", "ItemId":"3285934000000104097"}]' WHERE CreditNoteId = '3285934000000265005'

Delete

DELETE can be executed by specifying the CreditNoteId in the WHERE Clause For example:

DELETE FROM CreditNoteDetails WHERE CreditnoteId = '3285934000000265005'

Columns

Name Type ReadOnly References SupportedOperators Description
CreditnoteId [KEY] String True

CreditNotes.CreditnoteId

Id of a credit note.

CreditnoteNumber String False

Number of a credit note.

Adjustment Decimal True

Adjustments made to the credit note.

AdjustmentDescription String True

Description of adjustments made to the credit note.

ApproverId String True

Users.UserId

Id of an approver.

ApproversList String True

List of approvers.

AvataxUseCode String False

Used to group like customers for exemption purposes. It is a custom value that links customers to a tax rule.

AvataxTaxCode String False

A tax code is a unique label used to group items together.

AvataxExemptNo String False

Exemption certificate number of the customer.

Balance Decimal True

The unpaid amount.

BillingAddress String True

Billing address of a credit note.

BillingAddressAttention String True

Name of a person in billing address.

BillingAddressCity String True

City of a billing address.

BillingAddressCountry String True

Country of a billing address.

BillingAddressFax String True

Fax of a billing address.

BillingAddressPhone String True

Phone number of a billing address.

BillingAddressState String True

State of a billing address.

BillingAddressStreet2 String True

Street two of a billing address.

BillingAddressZip String True

ZIP code of a billing address.

ColorCode String True

Color code of a credit note.

ContactCategory String True

Category of a contact.

ContactPersons String True

Contact persons of a contact.

CreatedById String True

Users.UserId

Id of a user who has created credit note.

CreatedTime Datetime True

Time at which the credit note was created.

CreditNoteRefunds String True

CreditNoteRefunds

CurrencyCode String True

Currency code of the customer's currency.

CurrencyId String True

Currencies.CurrencyId

Currency Id of the customer's currency.

CurrencySymbol String True

Currency symbol of the customer's currency.

CurrentSubStatus String True

Current sub status of a credit note.

CurrentSubStatusId String True

Current sub status Id of a credit note.

CustomerId String False

Contacts.ContactId

Id of the customer or vendor.

CustomerName String True

Name of the customer or vendor.

CustomFields String False

Custom fields of the contact.

Date Date False

Date of a credit note.

Discount String True

Discount given to specific item in credit note.

DiscountAppliedOnAmount Decimal True

Discount applied on amount.

DiscountType String True

Type of discount.

ExchangeRate Decimal False

Exchange rate of the currency.

FiledInVatReturnId String True

VAT return Id of credit note which was filed.

FiledInVatReturnName String True

VAT return name of credit note which was filed.

FiledInVatReturnType String True

VAT return type of credit note which was filed.

GstNo String False

GST number used for credit note.

GstReason String True

Reason for GST given for credit note.

GstReturnDetailsReturnPeriod String True

Period for GST return.

GstReturnDetailsStatus String True

Status of GST return details.

GstTreatment String False

Choose whether the credit note is GST registered/unregistered/consumer/overseas. .

HasNextCreditnote Boolean True

Check if it has credit note.

InvoiceId String True

Invoices.InvoiceId

Invoice Id for credit note.

InvoicesCredited String True

InvoicesCredited

InvoiceNumber String True

Invoice number for credit note.

IsDiscountBeforeTax Boolean True

Check if the discount is applied before tax in credit note.

IsDraft Boolean False

Set to true if credit note has to be created in draft status.

IsEmailed Boolean True

Check if the credit note is emailed.

IsEwayBillRequired Boolean True

Check if eway bill is required for credit note.

IsInclusiveTax Boolean False

Check if the credit note is inclusive tax.

IsPreGst Boolean True

Check if pre GST is applied.

IsTaxable Boolean True

Check if this credit note is taxable.

LastModifiedById String True

Users.UserId

Id of the user last modified.

LastModifiedTime Datetime True

The time of last modification of the credit note.

LineItems String False

Line items of an estimate.

Notes String False

Notes for this credit note.

Orientation String True

Orientation of a page.

PageHeight String True

Height of a page.

PageWidth String True

Width of a page.

PlaceOfSupply String False

The place of supply is where a transaction is considered to have occurred for VAT purposes.

PricePrecision Integer True

The precision for the price.

ReasonForCreditnote String True

Any specific reason for taking credit note.

ReferenceNumber String False

Reference number of credit note.

ReverseChargeTaxTotal Decimal True

Total amount to pay the liability of tax.

RoundoffValue Decimal True

Rounding off the values to precise number.

SalespersonId String True

Id of a sales person.

SalespersonName String True

Name of a sales person.

ShippingAddress String True

Shipment Address.

ShippingAddressAttention String True

Name of a person of shipping address.

ShippingAddressCity String True

City of a shipping address.

ShippingAddressCountry String True

Country of a shipping address.

ShippingAddressFax String True

Fax of a shipping address.

ShippingAddressPhone String True

Phone number of a shipping address.

ShippingAddressState String True

State of a shipping address.

ShippingAddressStreet2 String True

Street two details of a shipping address.

ShippingAddressZip String True

Zip code of a shipping address.

ShippingCharge Decimal True

Shipping charge of credit note.

Status String True

Status of the credit note.

SubTotal Decimal True

Sub total of credit notes.

SubTotalInclusiveOfTax Decimal True

Subtotal amount which are inclusive of tax.

SubmittedBy String True

Detail of the user who has submitted the credit note.

SubmittedDate Date True

Date when credit note was submitted.

SubmitterId String True

Users.UserId

Id of a submitter of credit note.

TaxSpecification String True

Working of tax when specifying special tax options and tax methods for earnings codes.

TaxTotal Decimal True

Total amount of Tax.

Taxes String True

Taxes associated with the subscription.

TDSCalculationType String True

TDSCalculationType

TDSSummary String True

TDSSummary

TaxTreatment String False

VAT treatment for the Credit Note.

TemplateId String False

Id of a template.

TemplateName String True

Name of a tempalte.

TemplateType String True

Type of a template.

Terms String False

Terms and Conditions apply of a credit note.

Total Decimal True

Total of credit notes.

TotalCreditsUsed Decimal True

Total credits used for credit note.

TotalRefundedAmount Decimal True

Total amount refunded for a credit note.

TransactionRoundingType String True

Type of round off used for transaction.

VatTreatment String False

VAT treatment for the credit note.

IgnoreAutoNumberGeneration Boolean False

Set to true if you need to provide your own credit note number.

BcyShippingChargeTax Decimal True

Base currency shipping charge tax.

ClientViewedTime Datetime True

Time when the credit note was viewed by the client.

ContactPersonsAssociated String True

Associated contact persons.

CurrencyNameFormatted String True

Formatted currency name.

DiscountAccountId String True

ID of the discount account.

DiscountAccountName String True

Name of the discount account.

DispatchFromAddress String True

Address from which the credit note is dispatched.

Documents String True

Documents associated with the credit note.

Ewaybills String True

E-way bills associated with the credit note.

IsViewedByClient Boolean True

Indicates if the credit note has been viewed by the client.

LockDetailsCanLock Boolean True

Indicates if the credit note can be locked.

ShippingChargeAccountId String True

ID of the shipping charge account.

ShippingChargeAccountName String True

Name of the shipping charge account.

ShippingChargeExclusiveOfTax Decimal True

Shipping charge exclusive of tax.

ShippingChargeExclusiveOfTaxFormatted String True

Formatted shipping charge exclusive of tax.

ShippingChargeInclusiveOfTax Decimal True

Shipping charge inclusive of tax.

ShippingChargeInclusiveOfTaxFormatted String True

Formatted shipping charge inclusive of tax.

ShippingChargeTax Decimal True

Shipping charge tax.

ShippingChargeTaxExemptionCode String True

Shipping charge tax exemption code.

ShippingChargeTaxExemptionId String True

Shipping charge tax exemption ID.

ShippingChargeTaxFormatted String True

Formatted shipping charge tax.

ShippingChargeTaxId String True

Shipping charge tax ID.

ShippingChargeTaxName String True

Shipping charge tax name.

ShippingChargeTaxPercentage Decimal True

Shipping charge tax percentage.

ShippingChargeTaxType String True

Shipping charge tax type.

SubStatuses String True

Sub-statuses of the credit note.

SubjectContent String True

Subject content of the credit note.

SubmittedByEmail String True

Email of the user who submitted the credit note.

SubmittedByName String True

Name of the user who submitted the credit note.

SubmittedByPhotoUrl String True

Photo URL of the user who submitted the credit note.

TaxRounding String True

Tax rounding type.

TdsAmount Decimal True

TDS amount.

TdsOverridePreference String True

TDS override preference.

TdsPercent Decimal True

Percentage of TDS applied to this credit note.

TdsSection String True

TDS Section code applicable to this credit note.

TdsTaxId String True

ID of TDS (Tax Deducted at Source) rule associated with this credit note.

TdsTaxName String True

Name of TDS rule/tax for this credit note.

IsReverseChargeApplied Boolean False

True if reverse charge mechanism is applied to this credit note.

CfdiUsage String False

CFDI usage code for Mexican tax compliance, if applicable.

The allowed values are acquisition_of_merchandise, return_discount_bonus, general_expense, buildings, furniture_office_equipment, transport_equipment, computer_equipmentdye_molds_tools, telephone_communication, satellite_communication, other_machinery_equipment, hospital_expense, medical_expense_disability, funeral_expense, donation, interest_mortage_loans, contribution_sar, medical_expense_insurance_pormium, school_transportation_expense, deposit_saving_account, payment_educational_service, no_tax_effect, payment, payroll.

TaxId String False

Main tax ID applied for this credit note.

TaxAuthorityId String False

Tax authority ID associated with this credit note.

TaxExemptionId String False

ID of the tax exemption applied.

Unit String True

Unit of measure for the line item in the credit note.

Rate Decimal True

Rate or price per unit for this credit note line item.

Quantity Integer True

Quantity for this credit note line item.

CData Python Connector for Zoho Books

Currencies

To list, add, update and delete currencies configured. Also, get the details of a currency.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • CurrencyFilter supports the '=' comparison.
  • CurrencyId supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM Currencies WHERE CurrencyId = '1894553000000000099'

    SELECT * FROM Currencies WHERE CurrencyFilter = 'Currencies.ExcludeBaseCurrency'

Insert

INSERT can be executed by specifying the CurrencyCode, and CurrencyFormat columns. The columns that are not read-only can be inserted optionally. The following is an example of how to insert into this table.

INSERT INTO Currencies (currencycode, currencyformat) VALUES ('AUD', '1,234,567.89')

Update

UPDATE can be executed by specifying the CurrencyId in the WHERE Clause. The columns that are not read-only can be updated. For example:

UPDATE Currencies SET CurrencyFormat = '1,234,567.89', PricePrecision = '2' WHERE CurrencyId = '3285934000000000105'

Delete

DELETE can be executed by specifying the CurrencyId in the WHERE Clause For example:

DELETE FROM Currencies WHERE CurrencyId = '3285934000000000105'

Columns

Name Type ReadOnly References SupportedOperators Description
CurrencyId [KEY] String True

Currency Id of the customer's currency.

CurrencyName String True

Name of a currency.

CurrencyCode String False

Code of a currency.

CurrencyFormat String False

Format of a currency.

CurrencySymbol String False

Symbol of a currency.

EffectiveDate Date True

Date which the exchange rate is applicable for the currency.

ExchangeRate Decimal True

Exchange rate of the currency.

IsBaseCurrency Boolean True

Check of it is a base currency.

PricePrecision Integer False

The precision for the price.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
CurrencyFilter String

Filter currencies excluding base currency.

The allowed values are Currencies.ExcludeBaseCurrency.

CData Python Connector for Zoho Books

CustomerContacts

Create, Read, Update, Delete contact persons. Also, get the contact person details.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • ContactId supports the '=' comparison.
  • CustomerContactId supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM CustomerContacts WHERE ContactId = '1864553000000072009' AND CustomerContactId = '1896253000000071011'

Insert

INSERT can be executed by specifying FirstName and CONTACTID columns. The columns that are not read-only can be inserted optionally. The following is an example of how to insert into this table.

INSERT INTO CustomerContacts (FirstName, CONTACTID) VALUES ('customercontactspersons', '3285934000000085043') 

Update

UPDATE can be executed by specifying the CustomerContactId in the WHERE Clause. The columns that are not read-only can be updated. For example:

UPDATE CUSTOMERCONTACTS SET CONTACTID = '3285934000000085043', LASTNAME = 'TEST' WHERE customercontactid = '3285934000000266024'

Delete

DELETE can be executed by specifying the CustomerContactId in the WHERE Clause For example:

DELETE FROM CUSTOMERCONTACTS WHERE CustomerContactId = '3285934000000266024'

Columns

Name Type ReadOnly References SupportedOperators Description
CustomerContactId [KEY] String True

Id of a contact person.

ContactId String False

Contacts.ContactId

Id of a contact.

ContactName String True

Display Name of the contact. Max-length [200].

CreatedTime Datetime True

Time at which the contact person was created.

CurrencyCode String True

Currency code used for this contact person.

Department String False

Department on which a person belongs. .

Designation String False

Designation of a person.

Email String False

Email Id of contact person.

EnablePortal Boolean False

Option to enable the portal access. allowed values true,false

Fax String True

Fax Id of contact person.

FirstName String False

First name of the contact person.

IsPrimaryContact Boolean True

Check if it is a primary contact.

LastName String False

Last name of contact person.

Mobile String False

Mobile number of a contact person.

Phone String False

Phone number of a contact person.

Salutation String False

Salutation of a contact person.

Skype String False

Skype Id of contact person.

CanInvite Boolean True

Whether the contact person can be invited.

IsAddedInPortal Boolean True

Whether the contact person is added to the portal.

IsPortalInvitationAccepted Boolean True

Whether the portal invitation was accepted.

PhotoUrl String True

URL of the contact person's profile photo.

CData Python Connector for Zoho Books

CustomerPaymentDetails

To list, add, update and delete details of a payment.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following column and operator:

  • PaymentId supports the '=' and IN operators.

NOTE: PaymentId is required to query CustomerPaymentDetails.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM CustomerPaymentDetails WHERE PaymentId = '1894553000000083001'
	SELECT * FROM CustomerPaymentDetails WHERE PaymentId IN (SELECT PaymentId FROM CustomerPayments)
	SELECT * FROM CustomerPaymentDetails WHERE PaymentId IN ('1894553000000083001','1894553000000083002')

Insert

INSERT can be executed by specifying the CustomerId, PaymentMode, Amount, Date, InvoiceId, and AmountApplied columns. The columns that are not read-only can be inserted optionally. The following is an example of how to insert into this table.

INSERT INTO CustomerPaymentDetails (customerid, paymentmode, amount, date, invoiceid, amountapplied) VALUES ('3285934000000104002', 'cash', '1999', '2023-01-18', '3285934000000220356', '1999')  

Update

UPDATE can be executed by specifying the PaymentId in the WHERE Clause. The columns that are not read-only can be updated. For example:

UPDATE CustomerPaymentDetails SET CustomerId = '3285934000000104002', PaymentMode = 'bank', Amount = '1999', Date = '2023-01-18', InvoiceId = '3285934000000220356', AmountApplied = '1999' WHERE PaymentId = '3285934000000269021'

Delete

DELETE can be executed by specifying the PaymentId in the WHERE Clause For example:

DELETE FROM CustomerPaymentDetails WHERE PaymentId = '3285934000000269021'

Columns

Name Type ReadOnly References SupportedOperators Description
PaymentId [KEY] String True

CustomerPayments.PaymentId

Id of a payment.

AccountId String False

BankAccounts.AccountId

Id of the Bank Account.

AccountName String True

Name of the account.

AccountType String True

Type of the account.

Amount Decimal False

Amount of the customer payments.

AmountApplied Decimal False

Amount paid for the invoice.

AttachmentName String True

Name of the attachment.

BankCharges Decimal False

Charges of bank.

CanSendInMail Boolean True

Check if the customer payment can be send in mail.

CanSendPaymentSms Boolean True

Check if the customer payment can send payment SMS.

CardType String True

Type of card.

CurrencyCode String True

Currency code of the customer's currency.

CurrencyId String True

Currencies.CurrencyId

Currency Id of the customer's currency.

CustomerId String False

Contacts.ContactId

Id of the customer or vendor.

CustomerName String True

Name of the customer or vendor.

CustomFields String False

Custom fields of the contact.

CustomerAdvanceAccountId String True

CustomerAdvanceAccountId

CustomerAdvanceAccountName String True

CustomerAdvanceAccountName

ContactPersons String False

Contact persons of a contact.

Date Date False

Date of a customer payment.

Description String False

Description of the customer payment.

DiscountAmount Decimal True

Total discount amount applied in customer payment.

Documents String True

Documents

ExchangeRate Decimal False

Exchange rate of the currency.

ImportedTransactions String True

ImportedTransactions

IsClientReviewSettingsEnabled Boolean True

Check if the client review settings is enabled or not.

IsPaymentDetailsRequired Boolean True

Check if the payment details is required.

IsPreGst Boolean True

Check if pre GST is applied.

InvoiceId String False

Invoices.InvoiceId

Invoice Id for credit note.

LastFourDigits String True

It store the last four digits of customer's card details.

OnlineTransactionId String True

Id of online transaction.

Orientation String True

Orientation of the page.

PageHeight String True

Height of the page.

PageWidth String True

Width of the page.

PaymentLinkId String True

PaymentLinkId.

PaymentMode String False

Mode through which payment is made.

PaymentNumber String True

Number through which payment is made.

PaymentNumberPrefix String True

Prefix of the payment number.

PaymentNumberSuffix String True

Suffix of the payment number.

PaymentRefunds String True

PaymentRefunds

ProductDescription String True

Description of the product.

ReferenceNumber String False

Reference number of a customer payment.

SettlementStatus String True

Status of the settlement.

TaxAccountId String True

BankAccounts.AccountId

Account Id of tax.

TaxAccountName String True

Account name of tax.

TaxAmountWithheld Decimal False

Amount withheld for tax.

TemplateId String True

Id of a template.

TemplateName String True

Name of a template.

TemplateType String True

Type of a template.

UnusedAmount Decimal True

Unused amount of the customer payment.

UpdatedTime Datetime True

Time at which the payment details were last updated.

Invoices String False

List of invoices associated with the payment.

CreatedTime Datetime True

Time at which the payment was created.

CurrencySymbol String True

Symbol of the currency.

OfflineCreatedDateWithTime Datetime True

Offline created date with time.

PaymentGateway String True

Payment gateway used for the transaction.

PaymentStatus String True

Status of the payment.

PricePrecision Integer True

Precision of the price.

TdsTaxId String True

ID of TDS tax.

TdsType String True

Type of TDS.

CData Python Connector for Zoho Books

CustomerPaymentsRefund

Read, Insert and Update Vendor Credit Refunds.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • PaymentId supports the '=' comparison.
  • PaymentRefundId supports the '=' comparison.

The rest of the filter is executed client-side within the connector.

For example, the following queries are processed server-side:

SELECT * FROM CustomerPaymentsRefund WHERE PaymentId = '3350895000000089001'

SELECT * FROM CustomerPaymentsRefund WHERE PaymentRefundId = '3285934000000441001'

Insert

INSERT can be executed by specifying the Amount, Date, FromAccountId, and VendorCreditId columns. The columns that are not read-only can be inserted optionally. The following is an example of how to insert into this table.

INSERT INTO CustomerPaymentsRefund (Date, Amount, FromAccountId, PaymentId) VALUES ('2023-02-27', '1200', 3285934000000259036, 3285934000000312117)

Update

UPDATE can be executed by specifying the Amount, Date and AccountId in the WHERE Clause. The columns that are not read-only can be updated. For example:

UPDATE CustomerPaymentsRefund SET Description = 'test2' WHERE PaymentRefundId = 3285934000000439001 AND PaymentId = 3285934000000234015

Delete

DELETE can be executed by specifying the Id in the WHERE Clause For example:

DELETE FROM CustomerPaymentsRefund WHERE PaymentRefundId = 3285934000000439001 AND PaymentId = 3285934000000234015

Columns

Name Type ReadOnly References SupportedOperators Description
PaymentRefundId [KEY] String True =

Payment Refund Id

PaymentId [KEY] String False

CustomerPayments.PaymentId

=

Payment Id

Amount Integer False

Amount

FromAccountId String False

From Account Id

AmountBcy Integer True

Amount BCY

AmountFcy Integer True

Amount FCY

CustomerName String True

Customer Name

Date Date False

Date

Description String False

Description

ExchangeRate Decimal False

Exchange Rate

ReferenceNumber String False

Reference Number

RefundMode String False

Refund Mode

PaymentForm String False

Payment Form

PaymentNumber String True

Payment Number

CData Python Connector for Zoho Books

CustomModuleFields

To add columns in the custom modules created.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with EntityName, which supports the '=' comparison. The rest of the filter is executed client-side in the connector.

NOTE: EntityName is required to query CustomModuleFields.

For example:

    SELECT * FROM CustomModuleFields WHERE EntityName = 'cm_tests_module'

    SELECT * FROM CustomModules WHERE EntityName IN ('cm_tests_module', 'cm_testingmodule')

Insert

You can execute INSERT by specifying EntityName, FieldName, IsMandatory, DataType, and ShowOnPdf columns. The columns that are not read-only can be inserted optionally. The following is an example of how to insert into this table:

INSERT INTO CustomModuleFields (EntityName, FieldName, IsMandatory, DataType, ShowOnPdf) VALUES ('cm_test1', 'fieldname23', 'fcan also be executed', 'string', 'fcan also be executed')

Insert a field of type dropdown or multiselect by specifying the Options column in addition to the above columns. The following is an example of how to insert a field of type dropdown or multiselect:

INSERT INTO CustomModuleFieldDropDownOptions#TEMP (OptionName, OptionOrder) VALUES ('option2', '2')

INSERT INTO CustomModuleFieldDropDownOptions#TEMP (OptionName, OptionOrder) VALUES ('option1', '1')

INSERT INTO CustomModuleFields (entityname, fieldname, datatype, ismandatory, showonpdf, options) VALUES ('cm_testupdate', 'field4', 'multiselect', 'fcan also be executed', 'fcan also be executed', CustomModuleFieldDropDownOptions#TEMP )

Insert a field of type autonumber by specifying AutoNumberStartingValue. The following is an example of how to insert a field of type autonumber:

INSERT INTO CustomModuleFields (entityname, fieldname, datatype, ismandatory, showonpdf, AutoNumberStartingValue) VALUES ('cm_testupdate', 'field6', 'autonumber', 'fcan also be executed', 'fcan also be executed', 3)

Update

You can execute UPDATE by specifying the FieldId in the WHERE Clause. The columns that are not read-only can be updated.

UPDATE CustomModuleFields SET FieldName = 'testingss' WHERE FieldId = 4044157000000087002

Delete


DELETE FROM CustomModuleFields WHERE FieldName = 'cf_label_1' AND entityname = 'cm_tets_module'

Columns

Name Type ReadOnly References SupportedOperators Description
FieldId [KEY] String True

Id of the column created.

EntityName String False

APIName of the custom module for which column has to be added.

FieldName String False

Name of the column.

DataType String False

Data type of the column.

The allowed values are string, email, url, phone, number, decimal, amount, percent, date, date_time, check_box, autonumber, dropdown, multiselect, lookup, multiline, formula.

AutoNumberStartingValue Integer False

The value from auto-generation should start.This is mandatory in case data type is selected as autonumber.

Options String False

This is required if the datatype is multiselect or dropdown.

Description String False

Description of the custom field to help user understand the usecase.

IsMandatory Boolean False

Boolean value that tells if the column is mandatory or not.

ShowOnPdf Boolean False

Boolean value that tells if the value should be shown in pdf or not.

CData Python Connector for Zoho Books

CustomModules

In Zoho Books, you can create a custom module to record other data when the predefined modules are not sufficient to manage all your business requirements.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • APIName supports the '=' comparison

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM CustomModules WHERE APIName = 'cm_testing_module'

Insert

INSERT can be executed by specifying the ModuleName, ModulePluralName, and ModuleDescription columns. The columns that are not read-only can be inserted optionally. The following is an example of how to insert into this table.

INSERT INTO CustomModules (ModuleName, ModulePluralName, ModuleDescription) VALUES ('moduletesting', 'codetestings', 'testing insert through code')

Update

UPDATE can be executed by specifying the APIName in the WHERE Clause. The columns that are not read-only can be updated.

UPDATE CustomModules SET ModuleName = 'moduletestings', ModulePluralName = 'codetestingsedit', ModuleDescription = 'testing insert through code' WHERE apiname = 'cm_moduletesting'

Delete


DELETE FROM CustomModules WHERE apiname = 'cm_moduletesting'

Columns

Name Type ReadOnly References SupportedOperators Description
APIName [KEY] String True

API name of the module.

ModuleId String True

Id of a module.

ModuleName String False

Name of the module.

ModulePluralName String False

Plural name for the module.

ModuleDescription String False

Description of the custom module to help users understand the purpose of this custom module.

CData Python Connector for Zoho Books

EstimateDetails

To list, add, update and delete details of an estimate.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following column and operator:

  • EstimateId supports the '=' and IN operators.

NOTE: EstimateId is required to query EstimateDetails.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM EstimateDetails WHERE EstimateId = '1894553000000077244'
	SELECT * FROM EstimateDetails WHERE EstimateId IN (SELECT EstimateId FROM Estimates)
	SELECT * FROM EstimateDetails WHERE EstimateId IN ('1894553000000077244','1894553000000077245')

Insert

INSERT can be executed by specifying the Customerid and lineitems columns. The columns that are not read-only can be inserted optionally. The following is an example of how to insert into this table.

INSERT INTO EstimateLineItems#TEMP (Name, itemid) VALUES ('Cloth-Jeans1', '3285934000000104097')

INSERT INTO EstimateDetails (Customerid, lineitems) VALUES ('3285934000000104002', EstimateLineItems#Temp) 

INSERT can also be executed by specifying the LineItems column as a JSON array. The following is an example of how to insert using JSON array into this table.

INSERT INTO EstimateDetails (CustomerId, LineItems) VALUES ('3255827000000081003', '[{"Name":"Cloth-Jeans3", "ItemId":"3285934000000104097"}]')

Update

UPDATE can be executed by specifying the EstimateId in the WHERE Clause. The columns that are not read-only can be updated. For example:

INSERT INTO EstimateLineItems#TEMP (Name, itemid) VALUES ('Cloth-Jeans12', '3285934000000104097')

UPDATE EstimateDetails SET Customerid = '3285934000000104002', lineitems = 'EstimateLineItems#Temp'  WHERE EstimateId = '3285934000000263048'

UPDATE can also be executed by specifying the LineItems column as a JSON array. The following is an example of how to update using JSON array into this table.

UPDATE EstimateDetails SET CustomerId = '3285934000000085043', LineItems = '[{"Name":"Cloth-Jeans", "ItemId":"3285934000000104097"}]' WHERE EstimateId = '3285934000000263048'

Delete

DELETE can be executed by specifying the EstimateId in the WHERE Clause For example:

DELETE FROM EstimateDetails WHERE EstimateId = '3285934000000263048'

Columns

Name Type ReadOnly References SupportedOperators Description
EstimateId [KEY] String True

Estimates.EstimateId

Id of an estimate.

Adjustment Decimal False

Adjustments made to the estimate.

AdjustmentDescription String False

Description of adjustments made to the estimate.

AllowPartialPayments Boolean True

Check if estimate allows partial payments.

ApproverId String True

Users.UserId

Id of an approver.

AttachmentName String True

Name of the attachment.

AvataxUseCode String False

Used to group like customers for exemption purposes. It is a custom value that links customers to a tax rule.

AvataxExemptNo String False

Exemption certificate number of the customer.

BcyAdjustment Decimal True

Adjustment made for base currency.

BcyDiscountTotal Decimal True

Total amount get on discount for base currency.

BcyShippingCharge Decimal True

Shipping charge applied for base currency.

BcySubTotal Decimal True

Sub total of base currency.

BcyTaxTotal Decimal True

Total tax applied for the base currency.

BcyTotal Decimal True

Total Base Currency.

BillingAddress String True

Billing address of a estimate.

BillingAddressAttention String True

Name of a person in billing address.

BillingAddressCity String True

City of a billing address.

BillingAddressCountry String True

Country of a billing address.

BillingAddressFax String True

Fax of a billing address.

BillingAddressPhone String True

Phone number of a billing address.

BillingAddressState String True

State of a billing address.

BillingAddressStreet2 String True

Street two of a billing address.

BillingAddressZip String True

ZIP code of a billing address.

CanSendInMail Boolean True

Check if the estimate can be send in mail.

ClientViewedTime Datetime True

Time when client viewed the estimate.

ColorCode String True

Color code for estimate.

ContactPersons String True

Contact persons of a contact.

ContactCategory String True

Category for contact.

CreatedById String True

Users.UserId

Id of a user who has created estimate.

CreatedTime Datetime True

Time at which the estimate was created.

CustomFields String False

Custom fields of the contact.

CurrencyCode String True

Currency code of the customer's currency.

CurrencyId String True

Currencies.CurrencyId

Currency Id of the customer's currency.

CurrencySymbol String True

Currency symbol of the customer's currency.

CurrentSubStatus String True

Current sub status of an estimate .

CurrentSubStatusId String True

Current sub status Id of an estimate .

CustomerDefaultBillingAddress String True

Customer default billing address of an estimate.

CustomerDefaultBillingAddressCity String True

City of a customer default billing address.

CustomerDefaultBillingAddressCountry String True

Country of a customer default billing address.

CustomerDefaultBillingAddressFax String True

Fax of a customer default billing address.

CustomerDefaultBillingAddressPhone String True

Phone number of a customer default billing address.

CustomerDefaultBillingAddressState String True

State of a customer default billing address.

CustomerDefaultBillingAddressStateCode String True

State code of a customer default billing address.

CustomerDefaultBillingAddressStreet2 String True

Street two of a customer default billing address.

CustomerDefaultBillingAddressZip String True

ZIP code of a customer default billing address.

CustomerId String False

Contacts.ContactId

Id of the customer or vendor.

CustomerName String True

Name of the customer or vendor.

Date Date False

Date of an estimate.

Discount String False

Discount applied for estimate.

DiscountAppliedOnAmount Decimal True

Discount applied on amount for estimate.

DiscountPercent Decimal True

Percent of discount applied for estimate.

DiscountTotal Decimal True

Total discount applied for estimate.

DiscountType String False

Type of discount applied for estimate.

EstimateNumber String False

Number of estimate.

EstimateUrl String True

URL of estimate.

ExchangeRate Decimal False

Exchange rate of the currency.

ExpiryDate Date False

Expiration date of estimate.

InvoiceConversionType String True

Conversion type of an invoice in estimate.

IsConvertedToOpen Boolean True

Check if the estimate is converted to open.

IsDiscountBeforeTax Boolean False

Check if the discount is applied before tax. .

IsInclusiveTax Boolean False

Check if the expense is inclusive tax.

IsPreGst Boolean True

Check if estimate includes pre GST.

IsTransactionCreated Boolean True

Check if the transaction os created for estimate.

IsViewedByClient Boolean True

Check if the estimate is viewed by client.

LastModifiedById String True

Users.UserId

Id of the user last modified.

LastModifiedTime Datetime True

The time of last modification of the estimate.

LineItems String False

Line items of an estimate.

Notes String False

Notes of Estimate.

Orientation String True

Orientation of page.

PageHeight String True

Height of page.

PageWidth String True

Width of page.

PricePrecision Integer True

The precision for the price.

ProjectId String False

Id of a project.

ProjectName String True

Name of a project.

ProjectCustomerId String True

Id of a customer.

ProjectCustomerName String True

Name of a customer.

ProjectDescription String True

Details about the project.

ProjectStatus String True

Status of the project.

ProjectBillingType String True

Type of billing.

ProjectRate Decimal True

Overall rate of the project.

ReferenceNumber String False

Reference number of estimates.

PlaceOfSupply String False

The place of supply is where a transaction is considered to have occurred for VAT purposes.

TaxSpecification String True

Working of tax when specifying special tax options and tax methods for earnings codes.

VatTreatment String False

VAT treatment for the estimates.

IsTaxable Boolean True

Check if estimate is taxble.

GstNo String False

GST number.

GstTreatment String False

Choose whether the estimate is GST registered/unregistered/consumer/overseas. .

TaxTreatment String False

VAT treatment for the Estimate.

ReverseChargeTaxTotal String True

Total amount of tax reverse charge.

CanSendEstimateSms String True

Check if the estimate can send the estimate SMS.

RetainerPercentage String True

Percentage of the retainer in estimate.

AcceptRetainer Boolean True

Check if estimate can accept the retainer.

RoundoffValue Decimal True

Rounding off the values to precise number.

SalespersonId String True

Id of a sales person.

SalespersonName String False

Name of a sales person.

ShippingAddress String True

Shipment Address.

ShippingAddressAttention String True

Name of a person of shipping address.

ShippingAddressCity String True

City of a shipping address.

ShippingAddressCountry String True

Country of a shipping address.

ShippingAddressFax String True

Fax of a shipping address.

ShippingAddressPhone String True

Phone number of a shipping address.

ShippingAddressState String True

State of a shipping address.

ShippingAddressStreet2 String True

Street two of a shipping address.

ShippingAddressZip String True

Zip of a shipping address.

ShippingCharge Decimal False

Shipping charge of estimates.

Status String True

Status of the estimate.

SubTotal Decimal True

Sub total of estimates.

SubTotalExclusiveOfDiscount Decimal True

Subtotal amount which are exclusive of discount.

SubTotalInclusiveOfTax Decimal True

Subtotal amount which are inclusive of tax.

SubmittedBy String True

Detail of the user who has submitted the estimate.

SubmittedDate Date True

Date when estimate was submitted.

SubmitterId String True

Users.UserId

Id of the submitter.

TaxId String False

Taxes.TaxId

Id of the tax

TaxTotal Decimal True

Total amount of tax.

TemplateId String False

Id of a template.

TemplateName String True

Name of a template.

TemplateType String True

Type of a template.

Terms String False

Terms and Conditions apply of a estimate.

Total Decimal True

Total of estimates.

TransactionRoundingType String True

Type of round off used for transaction.

Unit String False

Unit of the line item e.g. kgs, Nos.

ApproversList String True

List of approvers for the estimate.

BcyShippingChargeTax Decimal True

Shipping charge tax for base currency.

ContactPersonsAssociated String True

Contact persons associated with the estimate.

ContactPersonsDetails String True

Details of contact persons for the estimate.

CreatedDate Date True

Date when the estimate was created.

DispatchFromAddress String True

Address from which the estimate is dispatched.

Documents String True

Documents associated with the estimate.

EstimateType String True

Type of estimate.

InvoiceIds String True

IDs of associated invoices.

InvoicedAmount Decimal True

Amount that has been invoiced.

IsProgressiveQuote Boolean True

Check if the estimate is a progressive quote.

IsViewedInMail Boolean True

Check if the estimate was viewed in mail.

MailFirstViewedTime Datetime True

Time when the estimate was first viewed in mail.

MailLastViewedTime Datetime True

Time when the estimate was last viewed in mail.

PaymentOptions String True

Payment options for the estimate.

RetainerInvoices String True

Retainer invoices associated with the estimate.

SalesOrders String True

Sales orders associated with the estimate.

ShippingChargeAccountId String True

ID of the shipping charge account.

ShippingChargeAccountName String True

Name of the shipping charge account.

ShippingChargeExclusiveOfTax Decimal True

Shipping charge amount exclusive of tax.

ShippingChargeExclusiveOfTaxFormatted String True

Formatted shipping charge amount exclusive of tax.

ShippingChargeInclusiveOfTax Decimal True

Shipping charge amount inclusive of tax.

ShippingChargeInclusiveOfTaxFormatted String True

Formatted shipping charge amount inclusive of tax.

ShippingChargeTax Decimal True

Shipping charge tax amount.

ShippingChargeTaxExemptionCode String True

Shipping charge tax exemption code.

ShippingChargeTaxExemptionId String True

Shipping charge tax exemption ID.

ShippingChargeTaxFormatted String True

Formatted shipping charge tax amount.

ShippingChargeTaxId String True

ID of the shipping charge tax.

ShippingChargeTaxName String True

Name of the shipping charge tax.

ShippingChargeTaxPercentage Decimal True

Percentage of the shipping charge tax.

ShippingChargeTaxType String True

Type of the shipping charge tax.

SubStatuses String True

Sub-statuses of the estimate.

SubjectContent String True

Content of the estimate subject.

SubmittedByEmail String True

Email of the user who submitted the estimate.

SubmittedByName String True

Name of the user who submitted the estimate.

SubmittedByPhotoUrl String True

Photo URL of the user who submitted the estimate.

SubscriptionIds String True

IDs of associated subscriptions.

TaxRounding String True

Tax rounding type for the estimate.

Taxes String True

Taxes applied to the estimate.

TdsAmount Decimal True

TDS amount.

TdsCalculationType String True

Type of TDS calculation.

TdsOverridePreference String True

TDS override preference.

TdsPercent Decimal True

TDS percentage.

TdsSection String True

TDS section.

TdsSummary String True

Summary of TDS.

TdsTaxId String True

TDS tax ID.

TdsTaxName String True

TDS tax name.

UninvoicedAmount Decimal True

Amount that is uninvoiced.

ZcrmPotentialId String True

ID of the Zoho CRM potential.

ZcrmPotentialName String True

Name of the Zoho CRM potential.

CustomBody String False

Custom body content for the estimate.

CustomSubject String False

Custom subject for the estimate.

TaxExemptionId String False

ID of the tax exemption.

TaxAuthorityId String False

ID of the tax authority.

IsReverseChargeApplied Boolean True

Check if reverse charge is applied.

LineItems String True

Line Item of the Estimate.

IgnoreAutoNumberGeneration Boolean True

Flag to ignore auto number generation.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
Send Boolean

Send the invoice to the contact person(s) associated with the invoice. Allowed values true and false.

CData Python Connector for Zoho Books

ExpenseDetails

To list, add, update and delete details of an Expense.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following column and operator:

  • ExpenseId supports the '=' and IN operators.

NOTE: ExpenseId is required to query ExpenseDetails.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM ExpenseDetails WHERE ExpenseId = '1894553000000077244'
	SELECT * From ExpenseDetails WHERE ExpenseId IN (SELECT ExpenseId FROM Expenses)
	SELECT * FROM EstimateLineItems WHERE EstimateId IN ('1894553000000077244','1894553000000077245')

Insert

INSERT can be executed by specifying the AccountId, Date, Amount, and PaidThroughAccountId columns. The columns that are not read-only can be inserted optionally. The following is an example of how to insert into this table.

INSERT INTO ExpenseDetails (AccountId, Date, Amount, PaidThroughAccountId) VALUES ('3285934000000000409', '2023-01-19', '500', '3285934000000259036') 

Update

UPDATE can be executed by specifying the ExpenseId in the WHERE Clause. The columns that are not read-only can be updated. For example:

UPDATE ExpenseDetails SET AccountId = '3285934000000000409', Date = '2023-01-19', Amount = '300', PaidThroughAccountId = '3285934000000259036' WHERE ExpenseId = '3285934000000262014' 

Delete

DELETE can be executed by specifying the ExpenseId in the WHERE Clause For example:

DELETE FROM ExpenseDetails WHERE ExpenseId = '3285934000000262014'

Columns

Name Type ReadOnly References SupportedOperators Description
ExpenseId [KEY] String True

Expenses.ExpenseId

Id of an expense.

AccountId String False

BankAccounts.AccountId

Id of the Bank Account.

AccountName String True

Name of the account.

Amount Decimal False

Amount of the expenses.

ApproverEmail String True

Email of an approver.

ApproverId String True

Users.UserId

Id of an approver.

ApproverName String True

Name of an approver.

AcquisitionVatId String False

This is the Id of the tax applied in case this is an EU - goods expense and acquisition VAT needs to be reported.

BcySurchargeAmount Decimal True

Surcharge amount of Base Currency.

BcyTotal Decimal True

Total Base Currency.

CanReclaimVatOnMileage String False

To specify if tax can be reclaimed for this mileage expense.

CreatedById String True

Users.UserId

Id of a user who has created expense.

CreatedTime Datetime True

Time at which the Expense was created.

CurrencyCode String True

Currency code of the customer's currency.

CurrencyId String False

Currencies.CurrencyId

Currency Id of the customer's currency.

CustomerId String False

Contacts.ContactId

Id of the customer or vendor.

CustomerName String True

Name of the customer or vendor.

CustomFields String False

Custom fields of the contact.

Date Date False

Expense date.

Description String False

Description of the expense.

DestinationOfSupply String False

Place where the goods/services are supplied to. (If not given, organisation's home state will be taken).

Distance String False

Distance travelled for a particular mileage expense where mileage_type is manual

EmployeeEmail String True

Email Id of an employee.

EmployeeId String False

Employees.EmployeeId

Id of an employee.

EmployeeName String True

Name of an employee.

EndReading String False

End Reading of the Odometer.

ExchangeRate Decimal False

Exchange rate of the currency.

ExpenseItemId String True

Item Id of an expense.

ExpenseReceiptName String True

Receipt name of an expense.

ExpenseReceiptType String True

Receipt type of an expense.

ExpenseType String True

Type of expense.

EngineCapacityRange String False

Engine capacity range for a particular mileage expense. Allowed Values: less_than_1400cc, between_1400cc_and_1600cc, between_1600cc_and_2000cc and more_than_2000cc.

HSNORSAC String False

Add HSN/SAC code for your goods/services.

FcySurchargeAmount Decimal True

Surcharge amount of Foreign Currency.

FuelType String False

Fuel type for a particular mileage expense. Allowed Values: petrol, lpg and diesel

GstNo String False

GST number used for credit note.

InvoiceConversionType String True

Type of invoice conversion.

InvoiceId String True

Invoices.InvoiceId

Id of an invoice.

InvoiceNumber String True

Number of an invoice.

IsBillable Boolean False

Check if the expense is billable.

IsInclusiveTax Boolean False

Check if the expense is inclusive tax.

IsPersonal Boolean True

Check if the expense is personal.

IsPreGst Boolean True

Check if the pre GST is applied in the expense.

IsRecurringApplicable Boolean True

Check if the recurring is applicable.

IsReimbursable Boolean True

Check if the expense is reimbursable.

IsSurchargeApplicable Boolean True

Check if the surcharge is applicable in this expense.

LastModifiedById String True

Users.UserId

Id of the user last modified.

LastModifiedTime Datetime True

The time of last modification of the expense.

LineItems String False

Line items of an estimate.

Location String True

Location of the expense.

MerchantId String True

Id of the merchant.

MerchantName String True

Name of the merchant.

MileageRate Double False

Mileage rate for a particular mileage expense.

MileageType String False

Type of Mileage.

MileageUnit String False

Unit of the distance travelled.

PaidThroughAccountId String False

BankAccounts.AccountId

Account Id from which expense amount was paid.

PaidThroughAccountName String True

Account name from which expense amount was paid.

PaymentMode String True

Mode through which payment is made.

ProjectId String False

Projects.ProjectId

Id of the project.

ProjectName String True

Name of the project.

ProductType String False

Type of the expense. This denotes whether the expense is to be treated as a goods or service purchase.

PlaceOfSupply String False

The place of supply is where a transaction is considered to have occurred for VAT purposes.

ReferenceNumber String False

Reference number of expense.

ReportId String True

Id of the report.

ReportName String True

Name of the report.

ReportNumber String True

Number of the report.

ReportStatus String True

Status of the report.

ReverseChargeVatId String False

This is the Id of the tax applied in case this is a non UK - service expense and reverse charge VAT needs to be reported.

ReverseChargeTaxId String False

Id of the reverse charge tax.

StartReading String False

Start Reading of the Odometer.

Status String True

Status of the expense.

SubTotal Decimal True

Sub total of expenses.

SourceOfSupply String False

Place from where the goods/services are supplied. (If not given, place of contact given for the contact will be taken).

Tags String True

Details of tags related to expenses.

TaxAmount Decimal True

Amount of tax.

TaxId String False

Taxes.TaxId

Id of tax.

TaxName String True

Name of tax.

TaxPercentage Integer True

Percentage of tax.

Total Decimal True

Total of expenses.

TransactionType String True

Type of the Transaction.

TripId String True

Id of a trip.

TripNumber String True

Number of a trip.

UserEmail String True

Email Id of a User.

UserId String True

Users.UserId

Id of a user.

UserName String True

Name of a user.

VehicleId String True

Id of a vehicle.

VehicleType String False

Vehicle type for a particular mileage expense. Allowed Values: car, van, motorcycle and bike.

VehicleName String True

Name of a vehicle.

VendorId String False

Id of the vendor the expenses has been made.

VendorName String True

Name of the vendor the expenses has been made.

VatTreatment String False

VAT treatment for the estimates.

TaxTreatment String False

VAT treatment for the Estimate.

Documents String True

List of attached documents in JSON format.

ImportedTransactions String True

List of imported transactions linked to the expense, in JSON format.

MarkupPercent Decimal True

Markup percent applied to the expense.

Taxes String True

List of individual tax objects in JSON format.

ZcrmPotentialId String True

Linked Zoho CRM deal/potential ID.

ZcrmPotentialName String True

Linked Zoho CRM deal/potential name.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
Receipt String

Expense receipt file to attach. Allowed Extensions: gif, png, jpeg, jpg, bmp, pdf, xls, xlsx, doc and docx.

CData Python Connector for Zoho Books

InvoiceDetails

To list, add, update and delete details of an invoice.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following column and operator:

  • InvoiceId supports the '=' and IN operators.

NOTE: InvoiceId is required to query InvoiceDetails.

The rest of the filter is executed client-side in the connector. For example:

SELECT * FROM InvoiceDetails WHERE InvoiceId = '1864543000000078539'
SELECT * FROM InvoiceDetails WHERE InvoiceId IN (SELECT InvoiceId FROM Invoices)
SELECT * FROM InvoiceDetails WHERE InvoiceId IN ('1864543000000078539','1864543000000078540')

Insert

INSERT can be executed by specifying the CustomerId and LineItems columns, inserting columns that are not read-only if desired. For example:

INSERT INTO InvoiceLineItems#TEMP (Name, itemid) VALUES ('Cloth-Jeans12', '3285934000000104097')

INSERT INTO InvoiceDetails (Customerid, lineitems) VALUES ('3285934000000104002', InvoiceLineItems#Temp)

INSERT can also be executed by specifying the LineItems column as either a JSON array or a temporary table:

INSERT INTO InvoiceDetails (CustomerId, LineItems) VALUES ('3255827000000081003', '[{"Name":"Cloth-Jeans3", "ItemId":"3285934000000104097"}]')

INSERT INTO InvoiceDetails (Customerid, lineitems) VALUES ('3285934000000104002', InvoiceLineItems#Temp) 

Update

UPDATE can be executed by specifying the InvoiceId in the WHERE Clause. The columns that are not read-only can be updated. For example:

INSERT INTO InvoiceLineItems#TEMP (Name, itemid) VALUES ('Cloth-Jeans2', '3285934000000104097')

UPDATE InvoiceDetails SET Customerid = '3285934000000104002', lineitems = 'InvoiceLineItems#Temp'  WHERE InvoiceId = '3285934000000264005'

UPDATE can also be executed by specifying the LineItems column as a JSON array. For example:

UPDATE InvoiceDetails SET CustomerId = '3285934000000085043', LineItems = '[{"Name":"Cloth-Jeans", "ItemId":"3285934000000104097"}]' WHERE InvoiceId = '3285934000000264005'

Delete

DELETE can be executed by specifying the InvoiceId in the WHERE Clause. For example:

DELETE FROM InvoicesDetails WHERE InvoiceId = '3285934000000264005'

Columns

Name Type ReadOnly References SupportedOperators Description
InvoiceId [KEY] String True

Invoices.InvoiceId

Id of an invoice.

InvoiceNumber String False

Number of an invoice.

InvoiceUrl String True

URL of an invoice.

AchPaymentInitiated Boolean True

Check if the Automated Clearing House payment is initiated.

AchSupported Boolean True

Check if Automated Clearing House is supported.

Adjustment Decimal False

Adjustments made to the invoice.

AdjustmentDescription String False

Description of adjustments made to the invoice.

AllowPartialPayments Boolean False

Check if invoice can allow partial payments.

ApproverId String True

Users.UserId

Id of an approver.

ApproversList String True

List of Id of an approver.

AttachmentName String True

Name of the attachment.

Balance Decimal True

The unpaid amount.

BcyAdjustment Decimal True

Adjustment of base currency.

BcyDiscountTotal Decimal True

Total discount applied in base currency.

BcyShippingCharge Decimal True

Shipping charge applied in base currency.

BcySubTotal Decimal True

Sub total of base currency.

BcyTaxTotal Decimal True

Tax total of base currency.

BcyTotal Decimal True

Total Base Currency.

BillingAddress String True

Billing address of an invoice.

BillingAddressAttention String True

Name of a person in billing address.

BillingAddressCity String True

City of a billing address.

BillingAddressCountry String True

Country of a billing address.

BillingAddressFax String True

Fax of a billing address.

BillingAddressPhone String True

Phone number of a billing address.

BillingAddressState String True

State of a billing address.

BillingAddressStreet2 String True

Street two of a billing address.

BillingAddressZip String True

ZIP code of a billing address.

ContactPersons String False

Contact persons of a contact.

CanSendInMail Boolean True

Check if invoice can be send in mail.

CanSendInvoiceSms Boolean True

Check if invoice can be send in SMS.

ClientViewedTime String True

Last time when client viewed the invoice.

ColorCode String True

Color code of invoice.

ComputationType String True

Computation type of invoice.

ContactCreditLimit Decimal True

Credit limit for a customer of invoice.

ContactCustomerBalance Decimal True

Balance for a customer of invoice.

ContactIsCreditLimitMigrationCompleted Boolean True

ContactIsCreditLimitMigrationCompleted.

ContactUnusedCustomerCredits Decimal True

Unused credits of customer of invoice.

ContactCategory String True

Category of a contact.

ContactPersonsDetails String True

Details of a contact person.

CreatedById String True

Users.UserId

Id of a user who has created invoice.

CreatedDate Date True

Date at which the invoice was created.

CreatedTime Datetime True

Time at which the invoice was created.

CreditsApplied Decimal True

Applied credits for invoice.

CustomFields String False

Custom fields of the contact.

CurrencyCode String True

Currency code of the customer's currency.

CurrencyId String False

Currencies.CurrencyId

Currency Id of the customer's currency.

CurrencySymbol String True

Symbol of currency.

CurrentSubStatus String True

Current sub status of an invoice .

CurrentSubStatusId String True

Current sub status Id of an invoice .

CustomerDefaultBillingAddress String True

Customer default billing address of an invoice.

CustomerDefaultBillingAddressCity String True

City of a billing address.

CustomerDefaultBillingAddressCountry String True

Country of a billing address.

CustomerDefaultBillingAddressFax String True

Fax of a billing address.

CustomerDefaultBillingAddressPhone String True

Phone number of a billing address.

CustomerDefaultBillingAddressState String True

State of a billing address.

CustomerDefaultBillingAddressStateCode String True

State code of a customer default billing address.

CustomerDefaultBillingAddressStreet2 String True

Street two of a customer default billing address.

CustomerDefaultBillingAddressZip String True

ZIP code of a customer default billing address.

CustomerId String False

Contacts.ContactId

Id of the customer or vendor.

CustomerName String True

Name of the customer or vendor.

Date Date False

Date of an invoice.

DebitNotes String True

Debit notes of an invoice.

DeliveryChallans String True

Delivery challans of an invoice.

Discount String False

Discount given to specific item in invoice.

DiscountAppliedOnAmount Decimal True

Discount applied on amount.

DiscountPercent Decimal True

Percent of discount applied.

DiscountTotal Decimal True

Total amount get on discount.

DiscountType String False

Type of discount.

DueDate Date False

Delivery date of the invoice.

EcommOperatorGstNo String True

GST number of the ecommerce operator.

EcommOperatorId String True

Id of the ecommerce operator.

EcommOperatorName String True

Name of the ecommerce operator.

EstimateId String True

Estimates.EstimateId

Id of an estimate.

Ewaybills String True

Electronic way bills of the invoice.

ExchangeRate Decimal False

Exchange rate of the currency.

IncludesPackageTrackingInfo Boolean True

IncludesPackageTrackingInfo.

InprocessTransactionPresent Boolean True

InprocessTransactionPresent.

InvoiceSource String True

InvoiceSource.

FiledInVatReturnId String True

VAT return Id of bill which was filed.

FiledInVatReturnName String True

VAT return name of bill which was filed.

FiledInVatReturnType String True

VAT return type of bill which was filed.

GstNo String False

GST number.

GstReturnDetailsReturnPeriod String True

Return period of GST.

GstReturnDetailsStatus String True

Status of GST return.

GstTreatment String False

Choose whether the invoice is GST registered/unregistered/consumer/overseas. .

HasNextInvoice Boolean True

Check if it has next invoice.

IsAutobillEnabled Boolean True

Check if the autobill is enabled for this invoice.

IsClientReviewSettingsEnabled Boolean True

Check if the client review settings is enabled or not.

IsDiscountBeforeTax Boolean False

Check if the invoice is discounted before tax.

IsEmailed Boolean True

Check if the invoice can be emailed.

IsEwayBillRequired Boolean True

Check if the eway bill is required.

IsInclusiveTax Boolean False

Check if the invoice is inclusive tax.

IsPreGst Boolean True

Check if pre GST is applied.

IsTaxable Boolean True

Check if invoice is taxable.

IsViewedByClient Boolean True

Check if the invoice is viewed by client.

InvoicedEstimateId Boolean False

Id of the invoice from which the invoice is created.

LastModifiedById String True

Users.UserId

Id of the user last modified.

LastModifiedTime Datetime True

The time of last modification of the invoice.

LastPaymentDate Date True

Date when last payment was made.

LastReminderSentDate Date True

Date when last reminder was sent for an invoice.

LineItems String False

Line Items

MerchantGstNo String True

GST number of a merchant.

MerchantId String True

Id of a merchant.

MerchantName String True

Name of a merchant.

NextReminderDateFormatted String True

NextReminderDateFormatted.

NoOfCopies Integer True

Total number of copies for invoice.

Notes String False

Notes for this invoice.

Orientation String True

Orientation of the page.

PageHeight String True

Height of the page.

PageWidth String True

Width of the page.

PaymentDiscount Decimal True

Discount applied on payment.

PaymentExpectedDate Date True

Expected date of payment.

PaymentMade Decimal True

Total amount of payment made.

PaymentOptionsPaymentGateways String False

PaymentOptionsPaymentGateways.

PaymentReminderEnabled Boolean True

Check if the payment reminder is enabled for the invoice.

PaymentTerms Integer False

Net payment term for the customer.

PaymentTermsLabel String False

Label for the paymet due details.

PlaceOfSupply String False

The place of supply is where a transaction is considered to have occurred for VAT purposes.

PricePrecision Integer True

The precision for the price.

QRCodeIsQREnabled Boolean True

QRCodeIsQREnabled.

QRCodeQRDescription String True

QRCodeQRDescription.

QRCodeQRSource String True

QRCodeQRSource.

QRCodeQRValue Integer True

QRCodeQRValue.

ReaderOfflinePaymentInitiated Boolean True

Check if the payment for offline reader is initiated.

ReasonForDebitNote String True

Description of having the debit note.

RecurringInvoiceId String False

RecurringInvoices.RecurringInvoiceId

Id of a recurring invoice.

ReferenceNumber String False

Reference number of invoice.

RemindersSent Integer True

Total number of reminders sent for this invoice.

ReverseChargeTaxTotal Decimal True

Total amount of reverse charge tax.

RoundoffValue Decimal True

Rounding off the values to precise number.

SalesorderId String True

SalesOrders.SalesorderId

Id of a sales order.

SalesorderItemId String False

SalesOrderLineItems.LineItemId

Id of the tax

SalespersonId String True

Id of a sales person.

SalespersonName String False

Name of a sales person.

ScheduleTime String True

Time scheduled for the invoice.

ShipmentCharges String True

Charges deducted for shipment.

ShippingAddress String True

Shipment Address.

ShippingAddressAttention String True

Name of a person of shipping address.

ShippingAddressCity String True

City of a shipping address.

ShippingAddressCountry String True

Country of a shipping address.

ShippingAddressFax String True

Fax of a shipping address.

ShippingAddressPhone String True

Phone number of a shipping address.

ShippingAddressState String True

State of a shipping address.

ShippingAddressStreet2 String True

Street two details of a shipping address.

ShippingAddressZip String True

Zip code of a shipping address.

ShippingCharge Decimal False

Shipping charge of invoice.

ShippingBills String True

Shipping bills of invoice.

ShowNoOfCopies Boolean True

Check if the invoice can show number of copies.

Status String True

Status of the invoice.

StopReminderUntilPaymentExpectedDate Boolean True

Check if reminder can be stopped untill the payment expected date.

SubTotal Decimal True

Sub total of the invoice.

SubTotalInclusiveOfTax Decimal True

Subtotal amount which are inclusive of tax.

SubmittedBy String True

Detail of the user who has submitted the invoice.

SubmittedDate Date True

Date when invoice was submitted.

SubmitterId String True

Users.UserId

Id of the invoice submitter.

TaxAmountWithheld Decimal True

Amount withheld for tax.

TaxRegNo String True

Registration number of tax.

TaxSpecification String True

Working of tax when specifying special tax options and tax methods for earnings codes.

TaxTotal Decimal True

Total number ot tax applied in the invoice.

TaxTreatment String False

VAT treatment for the Invoice.

TemplateId String False

Id of a template.

TemplateName String True

Name of a template.

TemplateType String True

Type of a template.

Terms String False

Terms and Conditions apply of a invoice.

Total Decimal True

Total of invoices.

TransactionRoundingType String True

Type of round off used for transaction.

Type String True

Types of invoice.

UnusedRetainerPayments Decimal True

Payment of the invoice which is unused.

VatTreatment String False

VAT treatment for the bills.

WriteOffAmount Decimal True

Amount to be write off.

BcyShippingChargeTax Decimal True

Shipping charge tax in base currency.

BillingAddressStreet String True

Street of the billing address.

CanGenerateEwaybillUsingIrn Boolean True

Indicates if e-waybill can be generated using IRN.

ContactPersonsAssociated String True

Associated contact persons.

CreatedByName String True

Name of the user who created the invoice.

CurrencyNameFormatted String True

Formatted currency name.

CustomFieldHash String True

Hash of Custom Fields associated with the invoice.

CustomerCustomFieldHash String True

Hash map for customer custom fields.

CustomerCustomFields String True

Customer custom fields associated with the invoice.

DiscountAccountId String True

ID of the discount account.

DiscountAccountName String True

Name of the discount account.

DispatchFromAddress String True

Dispatch from address details.

Documents String True

Documents attached to the invoice.

Email String True

Email to which invoice needs to be send.

IsBackorder Boolean True

Indicates if it's a backorder.

IsLastChildInvoice Boolean True

Indicates if it's the last child invoice.

IsProgressInvoice Boolean True

Indicates if it's a progress invoice.

IsTdsAmountInPercent Boolean True

Indicates if TDS amount is in percentage.

IsViewedInMail Boolean True

Indicates if the invoice has been viewed in mail.

LockDetails String True

Details about invoice locking.

MailFirstViewedTime Datetime True

Time when the mail was first viewed.

MailLastViewedTime Datetime True

Time when the mail was last viewed.

OfflineCreatedDateWithTime Datetime True

Date and time when invoice was created offline.

ReferenceInvoice String True

Reference invoice details.

SalesChannel String True

Sales channel of the invoice.

SalesorderNumber String True

Sales order number associated with the invoice.

Salesorders String True

Associated sales orders.

ShippingAddressStreet String True

Street of the shipping address.

ShippingChargeAccountId String True

ID of the shipping charge account.

ShippingChargeAccountName String True

Name of the shipping charge account.

ShippingChargeExclusiveOfTax Decimal True

Shipping charge exclusive of tax.

ShippingChargeExclusiveOfTaxFormatted String True

Formatted shipping charge exclusive of tax.

ShippingChargeInclusiveOfTax Decimal True

Shipping charge inclusive of tax.

ShippingChargeInclusiveOfTaxFormatted String True

Formatted shipping charge inclusive of tax.

ShippingChargeTax Decimal True

Shipping charge tax.

ShippingChargeTaxExemptionCode String True

Shipping charge tax exemption code.

ShippingChargeTaxExemptionId String True

Shipping charge tax exemption ID.

ShippingChargeTaxFormatted String True

Formatted shipping charge tax.

ShippingChargeTaxId String True

Shipping charge tax ID.

ShippingChargeTaxName String True

Shipping charge tax name.

ShippingChargeTaxPercentage Decimal True

Shipping charge tax percentage.

ShippingChargeTaxType String True

Shipping charge tax type.

SubStatuses String True

Sub-statuses of the invoice.

SubjectContent String True

Subject content of the invoice email.

SubmittedByEmail String True

Email of the user who submitted the invoice.

SubmittedByName String True

Name of the user who submitted the invoice.

SubmittedByPhotoUrl String True

Photo URL of the user who submitted the invoice.

TaxRounding String True

Tax rounding type.

Taxes String True

Tax details.

TdsAmount Decimal True

TDS amount.

TdsCalculationType String True

TDS calculation type.

TdsOverridePreference String True

TDS override preference.

TdsPercent Decimal True

TDS percentage.

TdsSection String True

TDS section.

TdsSummary String True

TDS summary.

TdsTaxId String True

TDS tax ID.

UnprocessedPaymentAmount Decimal True

Unprocessed payment amount for the invoice.

ZcrmPotentialId String True

Zoho CRM Potential ID.

ZcrmPotentialName String True

Zoho CRM Potential Name.

Print String True

URL or token to generate the printable version of the invoice.

Accept String True

URL or token that allows the customer to accept the invoice online.

IsReverseChargeApplied Boolean False

Indicates if reverse charge is applied.

CfdiUsage String False

CFDI usage.

The allowed values are acquisition_of_merchandise, return_discount_bonus, general_expense, buildings, furniture_office_equipment, transport_equipment, computer_equipmentdye_molds_tools, telephone_communication, satellite_communication, other_machinery_equipment, hospital_expense, medical_expense_disability, funeral_expense, donation, interest_mortage_loans, contribution_sar, medical_expense_insurance_pormium, school_transportation_expense, deposit_saving_account, payment_educational_service, no_tax_effect, payment, payroll.

CfdiReferenceType String False

CFDI reference type.

The allowed values are return_of_merchandise, substitution_previous_cfdi, transfer_of_goods, invoice_generated_from_order, cfdi_for_advance.

CustomBody String False

Custom body for the invoice email.

CustomSubject String False

Custom subject for the invoice email.

Reason String False

Reason for the action.

TaxAuthorityId String False

Tax authority ID.

TaxExemptionId String False

Tax exemption ID.

AvataxUseCode String False

AvaTax use code.

AvataxExemptNo String False

AvaTax exemption number.

TaxId String False

Tax ID.

ExpenseId String False

Expense ID.

AvataxTaxCode String False

AvaTax tax code.

IgnoreAutoNumberGeneration Boolean False

Ignore auto number generation.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
Send Boolean

Send the invoice to the contact person(s) associated with the invoice. Allowed values true and false.

CData Python Connector for Zoho Books

ItemDetails

To list, add, update and delete details of an existing item.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following column and operator:

  • ItemId supports the '=' and IN operators.

NOTE: ItemId is required to query ItemDetails.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM ItemDetails WHERE ItemId = '1894553000000079049'
	SELECT * FROM ItemDetails WHERE ItemId IN (SELECT ItemId FROM Items)
	SELECT * FROM ItemDetails WHERE ItemId IN ('1894553000000079049','1894553000000079050')

Insert

INSERT can be executed by specifying the Name and Rate columns. The columns that are not read-only can be inserted optionally. The following is an example of how to insert into this table.

INSERT INTO ItemDetails (Name, Rate) VALUES ('Bottle', '500')  

Update

UPDATE can be executed by specifying the ItemId in the WHERE Clause. The columns that are not read-only can be updated. For example:

UPDATE ItemDetails SET Name = 'Bottle', Rate = '550' WHERE ItemId = '3285934000000269037'

Delete

DELETE can be executed by specifying the ItemId in the WHERE Clause For example:

DELETE FROM ItemDetails WHERE ItemId = '3285934000000269037'

Columns

Name Type ReadOnly References SupportedOperators Description
ItemId [KEY] String True

Items.ItemId

Id of an item.

ItemType String False

Type of an item.

AccountId String False

BankAccounts.AccountId

Id of the Bank Account.

AccountName String True

Name of the account.

AvataxUseCode String False

Used to group like customers for exemption purposes. It is a custom value that links customers to a tax rule.

AvataxTaxCode String False

A tax code is a unique label used to group items together.

Brand String True

Brand of the item.

CreatedAt Date True

Date at which the item was created.

CreatedTime Datetime True

Time at which the item was created.

DefaultPriceBrackets String True

DefaultPriceBrackets.

Description String False

Description of an item.

Documents String True

Documents of an item.

HSNORSAC String False

Add HSN/SAC code for your goods/services.

ImageName String True

Name of the image.

InventoryAccountId String False

Id of the stock account to which the item has to be associated with. Mandatory, if item_type is inventory.

IsDefaultTaxApplied Boolean True

IsDefaultTaxApplied.

LastModifiedTime Datetime True

The time of last modification of the item.

Manufacturer String True

Company that makes goods for sale.

MaximumOrderQuantity Integer True

Maximum order quantity.

MinimumOrderQuantity Integer True

Minimum order quantity.

Name String False

Name of an item.

PreferredVendors String True

PreferredVendors.

PricebookRate Decimal True

Rate of pricebook.

PricingScheme String True

Scheme of price.

ProductType String False

Type of the product.

PurchaseAccountId String False

BankAccounts.AccountId

Account Id of purchase items.

PurchaseAccountName String True

Account name of purchase items.

PurchaseDescription String False

Description of purchase items.

PurchaseRate Decimal False

Rate of purchase items.

Rate Decimal False

Rate of the item.

SalesChannels String True

Total channels exists for sales.

SalesRate Decimal True

The rate of sale in the item.

Sku String False

Stock Keeping Unit value of item, should be unique throughout the product.

Source String True

Source of the item.

Status String True

Status of the item.

Tags String True

Details of tags related to items.

TaxId String False

Taxes.TaxId

Id of tax.

TaxName String True

Name of the tax.

TaxPercentage Integer False

Percentage applied for tax.

TaxType String True

Type of tax.

VendorId String False

Id of the vendor the expenses has been made.

VendorName String True

Name of the vendor the expenses has been made.

Unit String True

Number of quantity of item.

ReorderLevel String False

Reorder level of the item.

InitialStock String False

Opening stock of the item.

InitialStockRate String False

Unit price of the opening stock.

ItemTaxPreferences String False

Item Tax Preferences.

AssociatedTemplateId String True

ID of the associated template used for this item, if any.

CanBePurchased Boolean True

Indicates if the item can be purchased. Writable on both insert and update.

CanBeSold Boolean True

Indicates if the item can be sold. Writable on both insert and update.

CrmOwnerId String True

ID of the CRM owner associated with the item, if linked to Zoho CRM.

ImageType String True

MIME type or format of the item's image (e.g., 'image/png').

IntegrationReferences String True

Integration reference details associated with the item, in JSON format.

IsFulfillable Boolean True

Indicates if the item is fulfillable (e.g., stock-managed).

IsLinkedWithZohoCrm Boolean True

True if the item is linked with Zoho CRM.

IsTaxExpired Boolean True

Indicates if the tax applied to the item has expired.

OfflineCreatedDateWithTime Datetime True

Offline created date and time for the item, if applicable.

PriceBrackets String True

List of price brackets for the item, in JSON format.

PurchaseTaxInformation String True

Tax information applicable on purchase of this item.

TaxCountryCode String True

Country code related to the tax of the item.

TaxEndDate Date True

Date when the tax validity ends for the item.

TaxGroupsDetails String True

Details of tax groups applicable to the item.

TaxInformation String True

General tax information relevant to the item.

TaxStartDate Date True

Date when the tax validity starts for the item.

TaxStatus String True

Current tax status of the item.

TrackInventory Boolean True

Whether the item is tracked in inventory.

UnitId String True

ID of the unit of measurement associated with the item.

ZcrmProductId String True

Zoho CRM Product ID linked with this item, if any.

PurchaseTaxRuleId String False

ID of the purchase tax rule applied to the item.

SalesTaxRuleId String False

ID of the sales tax rule applied to the item.

SatItemKeyCode String False

SAT item key code associated with the item (for regional tax compliance).

UnitKeyCode String False

Unit key code used for categorizing the item’s unit of measure.

TaxExemptionId String False

ID representing any tax exemption applicable to the item.

PurchaseTaxExemptionId String False

ID representing any purchase tax exemption applicable to the item.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
IsTaxable String

Boolean to track the taxability of the item.

CData Python Connector for Zoho Books

Journals

To list, add, update and delete journals.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • EntryNumber supports the '=' comparison.
  • Notes supports the '=' comparison.
  • ReferenceNumber supports the '=' comparison.
  • Total supports the '=,<,<=,>,>=' comparisons.
  • Date supports the '=,<,>' comparisons.
  • VendorId supports the '=' comparison.
  • JournalFilter supports the '=' comparison.
  • CustomerId supports the '=' comparison.
  • LastModifiedTime supports the '=' comparison.

By default, the response shows the journals of the current month only.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM Journals WHERE Total < 1000 AND Total >= 119

    SELECT * FROM Journals WHERE JournalFilter = 'JournalDate.All'

Columns

Name Type ReadOnly References SupportedOperators Description
JournalId [KEY] String True

Id of a journal.

JournalType String False

Type of a journal.

JournalDate Date False

Date of a journal.

BcyTotal Decimal True

Total Base Currency

CurrencyId String False

Currencies.CurrencyId

Currency Id of the customer's currency.

CustomFields String False

Custom Fields defined for Journal

EntityType String True

Entity type of a journal.

EntryNumber String True

Entry number of the journal.

IncludeInVatReturn String False

VAT treatment for the estimates.

IsBasAdjustment Boolean False

Check if Journal is created for BAS Adjustment.

Notes String False

Notes of the journal.

ReferenceNumber String False

Reference number of the journal.

Status String False

Status of the journal

Total Decimal True =,<,<=,>,>=

Total of journals. Search by journal total. This field will be populated with a value only when the Journal Id is specified.

JournalNumberPrefix String True

Prefix for journal number. This field will be populated with a value only when the Journal Id is specified.

JournalNumberSuffix String True

Suffix for journal number. This field will be populated with a value only when the Journal Id is specified.

CreatedTime Datetime True

Time at which the journal was created. This field will be populated with a value only when the Journal Id is specified.

CurrencyCode String True

Currency code of the customer's currency. This field will be populated with a value only when the Journal Id is specified.

CurrencySymbol String True

Currency symbol of the customer's currency. This field will be populated with a value only when the Journal Id is specified.

ExchangeRate Decimal True

Exchange rate of the currency. This field will be populated with a value only when the Journal Id is specified.

LastModifiedTime Datetime True

Last Modified Time of a journal. This field will be populated with a value only when the Journal Id is specified.

LineItemTotal Decimal True

Total number of line items included in a journal. This field will be populated with a value only when the Journal Id is specified.

PricePrecision Integer True

The precision for the price This field will be populated with a value only when the Journal Id is specified.

ProjectId String True

Projects.ProjectId

Id of a project. This field will be populated with a value only when the Journal Id is specified.

ProjectName String True

Name of a project. This field will be populated with a value only when the Journal Id is specified.

ProductType String False

Type of the journal. This denotes whether the journal is to be treated as goods or service.

VatTreatment String False

VAT treatment for the estimates.

LineItems String False

Line items of an estimate.

TaxExemptionCode String False

Code of a tax exemption.

TaxExemptionType String False

Type of the Tax Exemption.

CreatedById String True

ID of the user who created the journal.

CreatedByName String True

Name of the user who created the journal.

AvailablePayablesCredits Decimal True

Available credits for payables in the journal.

AvailableReceivablesCredits Decimal True

Available credits for receivables in the journal.

BillsCredited String True

List of bills credited in this journal.

BranchDifference String True

Branch differences in the journal entries.

Comments String True

Comments on the journal.

Documents String True

Documents attached to the journal.

ImportedTransactions String True

List of imported transactions in the journal.

InvoicesCredited String True

List of invoices credited in this journal.

IsAccrualJournal Boolean True

Indicates whether this is an accrual journal.

JournalTemplateName String True

Name of the template used for this journal.

Taxes String True

Tax details for the journal entries.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
Date Date

Date of a journal.

VendorId String

Vendor Id of a journal.

JournalFilter String

Filter journals by journal date.

The allowed values are JournalDate.All, JournalDate.Today, JournalDate.ThisWeek, JournalDate.ThisMonth, JournalDate.ThisQuarter, JournalDate.ThisYear.

CustomerId String

Id of a customer

CData Python Connector for Zoho Books

OpeningBalances

To list and delete opening balances.

Table Specific Information

Select

No filters are supported server-side for this table. All criteria will be handled client-side within the connector. For example:

    SELECT * FROM OpeningBalances

Delete

DELETE can be executed without specifying OpeningBalanceId in the WHERE Clause. It will delete all the opening balances associated with any of the accounts. For example:

DELETE FROM OpeningBalances

Columns

Name Type ReadOnly References SupportedOperators Description
OpeningBalanceId [KEY] String True

ID of an opening balance.

CanShowCustomerOb Boolean True

Check if opening balance can show customer ob.

CanShowVendorOb Boolean True

Check if opening balance can show vendor ob.

Date Date True

Date of an opening balance.

PricePrecision Integer True

The precision for the price

Total Decimal True

Total of opening balances.

Accounts String True

Accounts.

Comments String True

Comments.

TotalFormatted String True

Formatted total amount of opening balance.

CData Python Connector for Zoho Books

Projects

To list, add, update and delete projects.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • ProjectId supports the '=' comparison.
  • CustomerId supports the '=' comparison.
  • Status supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM Projects WHERE CustomerId = '1894553000000078233' AND ProjectId = '1894553000000078363'

    SELECT * FROM Projects WHERE Status = 'Active'

Columns

Name Type ReadOnly References SupportedOperators Description
ProjectId [KEY] String True

Id of the project.

ProjectName String False

Name of the project.

ProjectCode String True

Code of the project.

Rate Decimal False

Hourly rate for a task.

Status String True

Status of the project.

The allowed values are All, Active, Inactive.

BillableHours String True

Total number of billable hours.

BillingType String False

Type of billing.

CanBeInvoiced Boolean True

Check if the projecy can be invoiced.

CreatedTime Datetime True

Time at which the project was created.

LastModifiedTime Datetime True

Time at which the project was last modified.

CustomerId String False

Contacts.ContactId

Id of the customer or vendor. Search projects by customer id.

CustomerName String True

Name of the customer or vendor.

CustomerEmail String True

Email of the customer.

CostBudgetAmount Decimal False

Budgeted Cost to complete this project.

BudgetAmount String False

Give value, if you are estimating total project revenue budget.

Description String False

Description of the projects

HasAttachment Boolean True

Check if the projects has attachment.

OtherServiceAppSource String True

Source of other service app.

TotalHours String True

Total hours spent in the project.

ShowInDashboard Boolean True

Check if the project can be shown in dashboard. This field will be populated with a value only when the Id is specified.

ProjectHeadId String True

Id of the project head. This field will be populated with a value only when the Id is specified.

ProjectHeadName String True

Name of the project head. This field will be populated with a value only when the Id is specified.

BillingRateFrequency String True

Frequency at which bill is generated for this project. This field will be populated with a value only when the Id is specified.

BillableAmount Decimal True

Amount which is billable for this project. This field will be populated with a value only when the Id is specified.

BilledAmount Decimal True

Total amount which was billed for the project. This field will be populated with a value only when the Id is specified.

BilledHours String True

Total number of billed hours. This field will be populated with a value only when the Id is specified.

BudgetThreshold Decimal True

To determine how much money to allocate to the reserve fund each fiscal year. This field will be populated with a value only when the Id is specified.

BudgetType String False

Type of budget. This field will be populated with a value only when the Id is specified.

BudgetHours String False

Task budget hours.

CurrencyId String True

Currencies.CurrencyId

Id of the currency.

CurrencyCode String True

Code of currency used in the project. This field will be populated with a value only when the Id is specified.

IsBudgetThresholdNotificationEnabled Boolean True

Check if the budget threshold notification is enabled or not. This field will be populated with a value only when the Id is specified.

IsClientApprovalNeeded Boolean True

Check if the client approval is needed. This field will be populated with a value only when the Id is specified.

IsExpenseInclusive Integer True

Check if the expense is inclusive in the project. This field will be populated with a value only when the Id is specified.

IsUserApprovalNeeded Boolean True

Check if the user approval is needed. This field will be populated with a value only when the Id is specified.

IsValidProjectHead Boolean True

Check if the project has valid project head. This field will be populated with a value only when the Id is specified.

NonBillableAmount Decimal True

Amount which are non billable for the project.. This field will be populated with a value only when the Id is specified.

NonBillableHours String True

Hours which are non billable for the project. This field will be populated with a value only when the Id is specified.

TotalAmount Decimal True

Total amount for the project. This field will be populated with a value only when the Id is specified.

TotalAmountExpenseInclusive Decimal True

Total amount for the project including the project. This field will be populated with a value only when the Id is specified.

UnBilledAmount Decimal True

Total amount unbilled for the project. This field will be populated with a value only when the Id is specified.

UnBilledHours String True

Total number of unbilled hours. This field will be populated with a value only when the Id is specified.

UserId String False

Users.UserId

Id of the user to be added to the project.

UsersWorking Integer True

Total count of the users working on the project.

Tasks String False

Tasks.

Users String False

Users.

UnusedRetainerPayments Decimal True

Payment of the project which is unused. This field will be populated with a value only when the Id is specified.

AccountsBudgets String True

Budgets of the Accounts.

BudgetThresholdFormatted String True

Formatted Threshold Budget for the Project.

CreatedById String True

Id of the Person who created the project.

CustomerFirstName String True

First Name of the customer.

Documents String True

List of all the documents attached to a project.

HasActiveRecurringProfile Boolean True

Indicates whether the project has one or more active recurring profiles associated with it.

HoursPerDay Time True

Hours per day spent on the project.

IsFromZohoPeople Boolean True

Indicates whether this project was created in or imported from Zoho People.

IsFromZohoProjects Boolean True

Indicates whether this project was created in or imported from Zoho Projects.

LastModifiedById String True

Id of the person who modified the project.

PhotoUrl String True

URL of the Photo.

ZohopeopleProjectId String True

ID of the corresponding project in Zoho People, if this project is linked or synchronized with Zoho People.

ZohoworkerlyProjectId String True

ID of the corresponding project in Zoho Workerly, if this project is linked or synchronized with Zoho Workerly.

CData Python Connector for Zoho Books

PurchaseOrderDetails

To list, add, update and delete details of a purchase order.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following column and operator:

  • PurchaseorderId supports the '=' and IN operators.

NOTE: PurchaseorderId is required to query PurchaseOrderDetails.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM PurchaseOrderDetails WHERE PurchaseorderId = '1894553000000087078'
	SELECT * FROM PurchaseOrderDetails WHERE PurchaseorderId IN (SELECT PurchaseorderId FROM PurchaseOrders)
	SELECT * FROM PurchaseOrderDetails WHERE PurchaseorderId IN ('1894553000000087078','1894553000000087079')

Insert

INSERT can be executed by specifying the Vendorid or lineitems columns. The columns that are not read-only can be inserted optionally. The following is an example of how to insert into this table.

INSERT INTO PurchaseorderLineItems#TEMP (Name, itemid, rate, quantity, accountid) VALUES ('Cloth-Jeans', '3285934000000104097', '1700', '1', '3285934000000034001')

INSERT INTO PurchaseorderDetails (Vendorid, lineitems) VALUES ('3285934000000104023', PurchaseorderLineItems#Temp)

INSERT can also be executed by specifying the LineItems column as a JSON array. The following is an example of how to insert using JSON array into this table.

INSERT INTO PurchaseorderDetails (VendorId, LineItems) VALUES ('3255827000000081003', '[{"Name":"Cloth-Jeans3", "ItemId":"3285934000000104097", "Rate":"1700", "Quantity":"1", "AccountId":"3285934000000034001"}]')

Update

UPDATE can be executed by specifying the PurchaseorderId in the WHERE Clause. The columns that are not read-only can be updated. For example:

INSERT INTO PurchaseorderLineItems#TEMP (Name, itemid, rate, quantity, accountid) VALUES ('Cloth-Jeans', '3285934000000104097', '1700', '1', '3285934000000034001')

UPDATE PurchaseOrderDetails SET Vendorid = '3285934000000104002', lineitems = 'PurchaseorderLineItems#Temp' WHERE PurchaseorderId = '3285934000000264005'

UPDATE can also be executed by specifying the LineItems column as a JSON array. The following is an example of how to update using JSON array into this table.

UPDATE PurchaseOrderDetails SET Vendorid = '3285934000000104002', LineItems = '[{"Name":"Cloth-Jeans", "ItemId":"3285934000000104097", "Rate":"1700", "Quantity":"1", "AccountId":"3285934000000034001"}]' WHERE PurchaseorderId = '3285934000000264005'

Delete

DELETE can be executed by specifying the PurchaseorderId in the WHERE Clause For example:

DELETE FROM PurchaseOrderDetails WHERE PurchaseOrderId = '3350895000000089001'

Columns

Name Type ReadOnly References SupportedOperators Description
PurchaseorderId [KEY] String True

PurchaseOrders.PurchaseorderId

Id of a purchase order.

PurchaseorderNumber String False

Number of purchase order.

ReferenceNumber String False

Reference number of purchase order.

Adjustment Decimal True

Adjustments made to the purchase order.

AdjustmentDescription String True

Description of adjustments made to the purchase order.

ApproverId String True

Users.UserId

Id of an approver.

ApproversList String True

List of approvers.

AttachmentName String True

Name of the attachment.

Attention String False

Name of a person in purchase order.

BilledStatus String True

Status of bill.

BillingAddressId Long False

Id of the Billing Address.

BillingAddress String True

Billing address of a purchase order.

BillingAddressAttention String True

Name of the person of bill order.

BillingAddressCity String True

City of billing address.

BillingAddressCountry String True

Country of billing address.

BillingAddressFax String True

Fax number of billing address.

BillingAddressPhone String True

Phone number of billing address.

BillingAddressState String True

State of billing address.

BillingAddressStreet2 String True

Street two of billing address.

BillingAddressZip String True

Zip code of billing address.

Bills String True

Bills.

CanMarkAsBill Boolean True

Check if purchase order can be mark as bill.

CanMarkAsUnbill Boolean True

Check if purhcase order can be mark as unbill.

CanSendInMail Boolean True

Check if purchase order can be sent in mail.

ClientViewedTime Datetime True

Last time when client viewed the purchase order.

ColorCode String True

Color code.

ContactCategory String True

Category of contacts.

CreatedById String True

Users.UserId

Contact Id who have created this purchase order.

CreatedTime Datetime True

Time at which the purchase order was created.

CurrencyCode String True

Currency code of the customer's currency.

CurrencyId String False

Currencies.CurrencyId

Currency Id of the customer's currency.

CurrencySymbol String True

Currency symbol of the customer's currency.

CurrentSubStatus String True

Current sub status of a purchase order.

CurrentSubStatusId String True

Current sub status Id of a purchase order.

ContactPersons String True

Contact persons of a contact.

CustomFields String False

Custom Fields defined for Journal

Date Date False

Purchase order date.

Documents String False

List of files to be attached to a particular transaction.

DeliveryAddress String True

Delivery address.

DeliveryAddress1 String True

Delivery address one.

DeliveryAddress2 String True

Delivery address two.

DeliveryAddressCity String True

City of delivery address.

DeliveryAddressCountry String True

Country of delivery address.

DeliveryAddressOrganizationAddressId String True

Id or organization address of delivery address.

DeliveryAddressPhone String True

Phone number of delivery address.

DeliveryAddressState String True

State of delivery address.

DeliveryAddressZip String True

Zip code of delivery address.

DeliveryCustomerId String False

Contacts.ContactId

Id of a customer of delivery address.

DueDate Date False

Delivery date of purchase order..

DeliveryDate Date False

Date of delivery.

DeliveryOrgAddressId String False

Delivery address Id of an organization.

Discount String False

Discount given to specific item in purchase order.

DiscountAccountId String False

BankAccounts.AccountId

Account Id of discount.

DiscountAmount Decimal True

Amount of discount.

DiscountAppliedOnAmount Double True

Discount applied on amount.

ExchangeRate Decimal False

Exchange rate of the currency.

ExpectedDeliveryDate Date True

Expected delivery date of purchased product.

HasQtyCancelled Boolean True

Check if the quantity of a purchase order has been cancelled.

IsDiscountBeforeTax Boolean False

Check if purchase order applied discount before tax.

IsDropShipment Boolean True

Check if purchase order have drop shipment.

IsEmailed Boolean True

Check if purchase order is emailed or not.

IsInclusiveTax Boolean False

Check if the purchase order is inclusive tax.

IsPreGst Boolean True

Check if purchase order includes pre GST.

IsViewedByClient Boolean True

Check if purchase order is viewed by client.

IsUpdateCustomer Boolean False

Check if customer should be updated.

LastModifiedTime Datetime True

The time of last modification of the purchase order.

Notes String False

Notes for this purchase order.

OrderStatus String True

Status of order.

Orientation String True

Orientation of the page.

PageHeight String True

Height of the page.

PageWidth String True

Width of the page.

PricePrecision Integer True

The precision for the price

PricebookId String False

Id of the pricebook.

SalesorderId String False

SalesOrders.SalesorderId

Id of the Sales Order.

SalesOrders String True

SalesOrders.

ShipVia String False

Mode of shipping the item.

ShipViaId String True

Id of mode through which shipping was done of items.

Status String True

Status of the purchase order

SubTotal Decimal True

Sub total of Purhcase order.

SubTotalInclusiveOfTax Decimal True

Subtotal amount which are inclusive of tax.

SubmittedBy String True

Detail of the user who has submitted the purchase order.

SubmittedDate Date True

Date of the submission.

SubmitterId String True

Users.UserId

Id of the submitter.

TaxTotal Decimal True

Total amount of tax.

Taxes String True

Taxes.

TemplateId String False

Id of the template.

TemplateName String True

Name of the template

TemplateType String True

Type of template.

Terms String False

Terms and Conditions apply of a purchase order.

Total Decimal True

Total of purchase orders.

TotalQuantity Integer True

TotalQuantity.

VendorId String False

Id of the vendor the purchase order has been made.

VendorName String True

Name of the vendor the purchase order has been made.

GstTreatment String False

Choose whether the vendor credit is GST registered/unregistered/consumer/overseas.

VatTreatment String False

VAT treatment for the vendor credit.

TaxTreatment String False

VAT treatment for the Vendor Credit.

GstNo String False

GST number.

SourceOfSupply String False

Source of supply.

PlaceOfSupply String False

The place of supply is where a transaction is considered to have occurred for VAT purposes.

DestinationOfSupply String False

Place where the goods/services are supplied to.

LineItems String False

Line items of an estimate.

ContactPersonsAssociated String True

List of associated contact persons (contacts linked to the purchase order), in JSON format.

DeliveryAddressEmail String True

Email address for delivery address (if present in API response).

DeliveryAddressIsPrimary Boolean True

Whether this delivery address is the primary address.

DeliveryAddressIsValid Boolean True

Whether the delivery address is valid.

DeliveryAddressIsVerifiable Boolean True

Whether the delivery address can be verified.

DeliveryAddressIsVerified Boolean True

Whether the delivery address has been verified.

DeliveryCustomerAddressId String True

Address ID of the delivery customer on the purchase order.

DiscountAccountName String True

Name of the account used for discount in this purchase order.

DiscountType String True

Type of discount applied (e.g., entity_level, item_level, etc.).

IsAdvTrackingInReceive Boolean True

Advanced tracking applied in receive operation.

IsTcsAmountInPercent Boolean True

Whether the TCS amount is a percentage value.

PaymentTerms Integer True

Numeric value representing the payment terms.

PaymentTermsLabel String True

Label for the payment terms (e.g., 'Due end of the month').

SubStatuses String True

List of sub-statuses for the purchase order, in JSON format.

SubmittedByEmail String True

Email of the user who submitted the purchase order.

SubmittedByName String True

Name of the user who submitted the purchase order.

SubmittedByPhotoUrl String True

Photo URL of the user who submitted the purchase order.

TaxOverridePreference String True

Preference setting for tax override on the purchase order.

TaxRounding String True

Tax rounding method applied to the purchase order (e.g., entity_level).

TdsAmount Decimal True

TDS (Tax Deducted at Source) amount for the purchase order.

TdsCalculationType String True

Calculation type for TDS, like 'tds_entity_level'.

TdsOverridePreference String True

Override preference for TDS on this purchase order.

TdsSection String True

TDS section applied, e.g., '194'.

TdsSummary String True

Summary of TDS applied, in JSON format.

TdsTaxId String True

ID of the TDS tax applied.

TdsTaxName String True

Name of the TDS tax applied.

TcsAmount Decimal True

TCS (Tax Collected at Source) amount for the purchase order.

TcsPercent Decimal True

TCS Percent value, if applicable.

TcsSection String True

TCS section code for purchase order.

TcsTaxId String True

ID of the TCS tax applied.

TcsTaxName String True

Name of the TCS tax applied.

CrmOwnerId String False

ID of the CRM Owner.

CrmCustomReferenceId Long False

ID of the CRM custom Reference.

NotesDefault String False

Default notes for the purchase order.

TermsDefault String False

Default terms for the purchase order.

Attachment String True

Attachment object/details, e.g. supporting documents (JSON format if object/array).

IgnoreAutoNumberGeneration Boolean False

Set to true to ignore automatic number generation when creating or updating this purchase order.

CData Python Connector for Zoho Books

RecurringBillDetails

To list, add, update and delete details of a bill.

git ad

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following column and operator:

  • RecurringBillId supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM RecurringBillDetails WHERE RecurringBillId = '3255827000000084031'

Insert

INSERT can be executed by specifying the StartDate, RecurrenceName, RecurrenceFrequency, VendorID, and LineItems columns. The columns that are not read-only can be inserted optionally. The following is an example of how to insert into this table.

INSERT INTO RecurringBillLineItems#TEMP (Name, itemid) VALUES ('rubberband', '3255827000000081058') 

INSERT INTO RecurringBillDetails (vendorid, startdate, recurrencename, lineitems, recurrencefrequency) VALUES ('3255827000000081003', '2023-03-01', 'recurring7', RecurringBillLineItems#TEMP, 'days')

INSERT can also be executed by specifying the LineItems column as a JSON array. The following is an example of how to insert using JSON array into this table.

INSERT INTO RecurringBillDetails (VendorId, StartDate, RecurrenceName, RecurrenceFrequency, LineItems) VALUES ('3255827000000081003', '2023-03-01', 'recurring7', 'days', '[{"Name":"Cloth-Jeans3", "ItemId":"3285934000000104097"}]')

Update

UPDATE can be executed by specifying the RecurringBillId in the WHERE Clause. The columns that are not read-only can be updated. For example:

UPDATE RecurringBillDetails SET RecurrenceName = 'recurrence3' WHERE RecurringBillId = '3255827000000084031'

Delete

DELETE can be executed by specifying the BillId in the WHERE Clause For example:

DELETE FROM RecurringBillDetails WHERE BillId = '3255827000000084031'

Columns

Name Type ReadOnly References SupportedOperators Description
RecurringBillId [KEY] String True

Id of a Recurring Bill.

Adjustment Integer True

Adjustment.

AdjustmentDescription String True

Status of the bill.

ContactCategory String True

ContactCategory.

CreatedById String True

Created By Id.

CreatedTime Datetime True

Created Time.

CurrencyId String False

Currencies.CurrencyId

Currency Id of the customer's currency.

CurrencyCode String True

Currency code of the customer's currency.

CustomFields String False

Custom fields of the items.

Discount String False

Discount of recurring bills.

DiscountAccountId String True

Account Id of discount.

DiscountAmount Integer True

Discount amount.

DiscountAppliedOnAmount String True

Discount applied on amount.

DiscountSetting String True

Discount setting.

DiscountType String True

Discount type.

EndDate Date False

Date when the payment is expected.

ExchangeRate Integer True

Exchange Rate.

IsDiscountBeforeTax Boolean False

Check if discount should be applied before tax.

IsInclusiveTax Boolean False

Check if the tax is inclusive in the bill.

IsItemLevelTax Boolean True

Item Level Tax.

IsPreGST Boolean True

Is Pre GST.

IsTDSAmountInPercent Boolean True

Is TDS Amount In Percent

LastModifiedById String True

Last Modified By Id.

LastModifiedTime Datetime True

The time of last modification of the bill.

LastSentDate Date True

Date when recurring bill was last sent.

LineItems String False

Line items of an recurring bill.

NextBillDate Date True

Date when bill will be sent next.

Notes String False

Notes of the bill.

PaymentTerms Integer False

Net payment term for the customer.

PaymentTermsLabel String False

Label for the paymet due details.

RecurrenceFrequency String False

Frequency at which recurring bill will be sent.

The allowed values are days, weeks, months, years.

RecurrenceName String False

Search recurring bills by recurrence number.

VendorId String False

Id of the vendor the bill has been made.

VendorName String True

Name of the vendor the bill has been made.

Total Integer True

Total of the bill.

ReferenceId String True

Reference Id.

RepeatEvery Integer False

Integer value denoting the frequency of bill.

StartDate Date False

Date when bill was created.

Status String True

Status of the bill.

The allowed values are active, stopped, expired.

SubTotal Integer True

Sub total of the bill.

SubjectContent String True

SubjectContent.

TaxAccountId String True

Tax Account Id.

TaxRounding String True

Tax Rounding.

TaxTotal String True

Tax Total.

TdsTaxId String True

Tax Id of TDS.

TdsTaxName String True

Tds tax name.

TdsAmount Integer True

TDS Amount.

TdsPercent Decimal True

TDS Percent.

TrackDiscountInAccount Boolean True

Track Discount In Account.

BillingAddress String True

Billing address of a bill.

BillingAddressAttention String True

Name of a person in billing address.

BillingAddressCity String True

City of a billing address.

BillingAddressCountry String True

Country of a billing address.

BillingAddressFax String True

Fax of a billing address.

BillingAddressPhone String True

Phone of a billing address.

BillingAddressState String True

State of a billing address.

BillingAddressStreet2 String True

Street two of a billing address.

BillingAddressZip String True

Zip of a billing address.

BillingAddressId Long True

Id of the Billing Address.

CustomFieldHash String True

Hash of custom field name/value pairs for the recurring bill, in JSON format.

PricePrecision Integer True

The precision for the price.

Taxes String True

Taxes.

TdsCalculationType String True

Calculation type for TDS, like 'tds_entity_level'.

TdsOverridePreference String True

Override preference for TDS on this bill.

TdsSection String True

Section of TDS.

TdsSummary String True

Summary of TDS applied, in JSON format.

TemplateId String True

Id of a template.

TemplateName String True

Name of a template.

Terms String False

Terms and Conditions apply of a bill.

SourceOfSupply String False

Place from where the goods/services are supplied.

PlaceOfSupply String False

The place of supply is where a transaction is considered to have occurred for VAT purposes.

DestinationOfSupply String False

Place where the goods/services are supplied to.

GstTreatment String False

Choose whether the bill is GST registered/unregistered/consumer/overseas.

TaxTreatment String False

VAT treatment for the Bill.

GstNo String False

GST number.

VatTreatment String False

VAT treatment for the bills.

VatRegNo String False

For UK Edition: VAT Registration number of a contact with length should be between 2 and 12 characters. For Avalara: If you are doing sales in the European Union (EU) then provide VAT Registration Number of your customers here. This is used to calculate VAT for B2B sales, from Avalara

IsAbnQuoted String False

Australian Business Number (ABN) for the bills is quoted.

Abn String False

Australian Business Number (ABN) for the bill.

IsReverseChargeApplied Boolean True

Check if reverse charge is applied.

PricebookId String False

Enter Id of the price book.

IsTdsApplied Boolean True

Check if TDS is applied.

CData Python Connector for Zoho Books

RecurringExpenseDetails

To list, add, update and delete details of a recurring expense.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following column and operator:

  • RecurringExpenseId supports the '=' and IN operators.

NOTE: RecurringExpenseId is required to query RecurringExpenseDetails.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM RecurringExpenseDetails WHERE RecurringExpenseId = '1801553000000089750'
	SELECT * FROM RecurringExpenseDetails WHERE RecurringExpenseId IN (SELECT RecurringExpenseId FROM RecurringExpenses)
	SELECT * FROM RecurringExpenseDetails WHERE RecurringExpenseId IN ('1801553000000089750','1801553000000089751')

Columns

Name Type ReadOnly References SupportedOperators Description
RecurringExpenseId [KEY] String True

RecurringExpenses.RecurringExpenseId

Id of a recurring expense.

AccountId String False

BankAccounts.AccountId

Id of the Bank Account

AccountName String True

Name of the account.

Amount Decimal False

Amount of the recurring expenses.

BcyTotal Decimal True

Total Base Currency.

CreatedTime Datetime True

Time at which the recurring expense was created.

CurrencyCode String True

Currency code of the customer's currency.

CurrencyId String False

Currencies.CurrencyId

Currency Id of the customer's currency.

CustomerId String False

Contacts.ContactId

Id of the customer or vendor.

CustomerName String True

Name of the customer or vendor.

Description String True

Description of the recurring expense.

EmployeeEmail String True

Email of an employee.

EmployeeId String True

Employees.EmployeeId

Id of an employee.

EmployeeName String True

Name of an employee.

EndDate Date False

End date of a recurring expense.

ExchangeRate Decimal False

Exchange rate of a recurring expense.

IsBillable Boolean False

Check if recurring expense is billable.

IsInclusiveTax Boolean False

Check if recurring expense is inclusive tax.

IsPreGst Boolean True

Check if recurring expense is pre GST.

LastCreatedDate Date True

Last created date of a recurring expense.

LastModifiedTime Datetime True

The time of last modification of the recurring expense.

MileageRate Double True

Mileage rate for a particular mileage expense.

MileageUnit String True

Unit of the distance travelled.

NextExpenseDate Date True

Next date of expense to be paid.

PaidThroughAccountId String True

BankAccounts.AccountId

Account Id from which expense is paid through.

PaidThroughAccountName String True

Account name from which expense is paid through.

ProjectId String False

Projects.ProjectId

Id of a project.

ProjectName String True

Name of the project.

RecurrenceFrequency String False

Frequency of a recurrence.

RecurrenceName String False

Name of a recurrence

RepeatEvery Integer False

Recurrence time of an expense.

StartDate Date False

Start date of recurring expense.

Status String True

Status of the recurring expense.

SubTotal Decimal True

Sub total of recurring expenses.

Tags String True

Details of tags related to recurring expenses.

TaxAmount Decimal True

Amount of a tax.

TaxId String False

Taxes.TaxId

Id of a tax.

TaxName String True

Name of a tax.

TaxPercentage Integer True

Percentage of a tax.

Total Decimal True

Total of recurring expenses.

VendorId String True

Id of the vendor the recurring expense has been made.

VendorName String True

Name of the vendor the recurring expense has been made.

GstNo String False

GST number.

SourceOfSupply String False

Place from where the goods/services are supplied. (If not given, place of contact given for the contact will be taken).

DestinationOfSupply String False

Place where the goods/services are supplied to.

PlaceOfSupply String False

The place of supply is where a transaction is considered to have occurred for VAT purposes.

LineItems String False

Line items of an estimate.

VatTreatment String False

VAT treatment for the bills.

TaxTreatment String False

VAT treatment for the Bill.

ProductType String False

Type of the journal. This denotes whether the journal is to be treated as goods or service.

AcquisitionVatId String False

This is the Id of the tax applied in case this is an EU - goods expense and acquisition VAT needs to be reported.

ReverseChargeVatId String False

This is the Id of the tax applied in case this is a non UK - service expense and reverse charge VAT needs to be reported.

CreatedById String True

ID of the user who created the recurring expense.

LastModifiedById String True

ID of the user who last modified the recurring expense.

MarkupPercent Decimal True

Markup percentage applied to the recurring expense.

TaxNameFormatted String True

Formatted tax name string for display.

VendorCountryCode String True

Country code of the vendor associated with the recurring expense.

ReverseChargeTaxId String False

Enter reverse charge tax IDFor SouthAfrica edition:(Required if customer tax treatment is vat_registered). Used to specify whether the transaction is applicable for Domestic Reverse Charge (DRC) or not.

CData Python Connector for Zoho Books

RecurringInvoiceDetails

To list, add, update and delete details of a recurring invoice.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following column and operator:

  • RecurringInvoiceId supports the '=' and IN operators.

NOTE: RecurringInvoiceId is required to query RecurringInvoiceDetails.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM RecurringInvoiceDetails WHERE RecurringInvoiceId = '1895453000000042244'
	SELECT * FROM RecurringInvoiceDetails WHERE RecurringInvoiceId IN (SELECT RecurringInvoiceId FROM RecurringInvoices)
	SELECT * FROM RecurringInvoiceDetails WHERE RecurringInvoiceId IN ('1895453000000042244','1895453000000042245')

Insert

INSERT can be executed by specifying the RecurrenceName, CustomerId, RecurrenceFrequency, and LineItems columns. The columns that are not read-only can be inserted optionally. The following is an example of how to insert into this table.

INSERT INTO RecurringInvoiceLineItems#TEMP (Name, itemid, rate, quantity) VALUES ('Cloth-Jeans', '3285934000000104097', '1700', '1')

INSERT INTO RecurringInvoiceDetails (RecurrenceName, CustomerId, RecurrenceFrequency, LineItems) VALUES ('MonthlyInvoice', '3285934000000104002', 'weeks', RecurringInvoiceLineItems#TEMP ) 

INSERT can also be executed by specifying the LineItems column as a JSON array. The following is an example of how to insert using JSON array into this table.

INSERT INTO RecurringInvoiceDetails (RecurrenceName, CustomerId, RecurrenceFrequency, LineItems) VALUES ('MonthlyInvoice', '3285934000000104023', 'weeks', '[{"Name":"Cloth-Jeans3", "ItemId":"3285934000000104097", "Rate":"1700", "Quantity":"1"}]')

Update

UPDATE can be executed by specifying the RECURRINGINVOICEID in the WHERE Clause. The columns that are not read-only can be updated. For example:

INSERT INTO RecurringInvoiceLineItems#TEMP (Name,itemid,rate,quantity) VALUES ('Cloth-Jeans','3285934000000104097','1700','1')

UPDATE RecurringInvoiceDetails SET RecurrenceName = 'MonthlyInvoice', CustomerId = '3285934000000104002', RecurrenceFrequency = 'weeks', LineItems = 'RecurringInvoiceLineItems#TEMP' WHERE RECURRINGINVOICEID = '3285934000000268005'

UPDATE can also be executed by specifying the LineItems column as a JSON array. The following is an example of how to update using JSON array into this table.

UPDATE RecurringInvoiceDetails SET RecurrenceName = 'MonthlyInvoice', CustomerId = '3285934000000104002', RecurrenceFrequency = 'weeks', LineItems = '[{"Name":"Cloth-Jeans", "ItemId":"3285934000000104097", "Rate":"1700", "Quantity":"1"}]' WHERE RecurringInvoiceId = '3285934000000268005'

Delete

DELETE can be executed by specifying the RECURRINGINVOICEID in the WHERE Clause For example:

DELETE FROM RecurringInvoiceDetails WHERE RECURRINGINVOICEID = '3285934000000268005'

Columns

Name Type ReadOnly References SupportedOperators Description
RecurringInvoiceId [KEY] String True

RecurringInvoices.RecurringInvoiceId

Id of a recurring invoice.

ActualChildInvoicesCount Integer True

Count total number of actual child invoices.

Adjustment Decimal False

Adjustments made to the recurring invoices.

AdjustmentDescription String False

Description of adjustments made to the recurring invoices.

AllowPartialPayments Boolean True

Check if the recurring invoice can allow partial payments.

AvataxUseCode String False

Used to group like customers for exemption purposes. It is a custom value that links customers to a tax rule.

AvataxTaxCode String False

A tax code is a unique label used to group items together.

AvataxExemptNo String False

Exemption certificate number of the customer.

BcyAdjustment Decimal True

Adjustment of base currency.

BcyDiscountTotal Decimal True

Total discount applied in base currency.

BcyShippingCharge Decimal True

Shipping charge applied in base currency.

BcySubTotal Decimal True

Sub total of base currency.

BcyTaxTotal Decimal True

Tax total of base currency.

BcyTotal Decimal True

Total Base Currency.

BillingAddress String False

Billing address of a recurring invoice.

BillingAddressAttention String True

Name of a person in billing address.

BillingAddressCity String False

City of a billing address.

BillingAddressCountry String False

Country of a billing address.

BillingAddressFax String False

Fax of a billing address.

BillingAddressPhone String True

Phone number of a billing address.

BillingAddressState String False

State of a billing address.

BillingAddressStreet2 String False

Street two of a billing address.

BillingAddressZip String False

ZIP code of a billing address.

ChildEntityType String True

Entity type of a child in recurring invoice.

Comments String True

Comments.

CompanyName String True

Name of the company.

ContactCategory String True

Category of the contact.

ContactPersons String True

Contact persons of a contact.

CreatedById String True

Users.UserId

Id of a user who has created recurring invoice.

CreatedTime Datetime True

Time at which the recurring invoice was created.

CurrencyCode String True

Currency code of the customer's currency.

CurrencyId String False

Currencies.CurrencyId

Currency Id of the customer's currency.

CurrencySymbol String True

Symbol of the currency.

CustomerEmail String True

Email address of the customer.

CustomerMobilePhone String True

Mobile phone number of customer.

CustomerId String False

Contacts.ContactId

Id of the customer or vendor.

CustomerName String True

Name of the customer or vendor.

CustomerPhone String True

Phone number of a customer.

Discount String False

Discount given to specific item in recurring invoice.

DiscountAppliedOnAmount Decimal True

Amount from which discount was applied.

DiscountPercent Double True

Percentage of discount applied.

DiscountTotal Decimal True

Total amount get on discount.

DiscountType String False

Type to get discount in recurring invoice.

DispatchFromAddress String True

Dispatch from address details for the recurring invoice.

Email String False

Email address of the customer.

EndDate Date False

End date for the recurring invoice.

ExchangeRate Decimal False

Exchange rate of the currency.

IsAutoBillEnabled Boolean True

Check if autobill is enabled.

IsDiscountBeforeTax Boolean False

Check if the recurring invoice is discounted before tax.

IsInclusiveTax Boolean False

Check if the expense is inclusive tax.

IsPreGst Boolean True

Check if pre GST is applied.

LastModifiedById String True

Users.UserId

Id of the user last modified.

LastModifiedTime Datetime True

The time of last modification of the recurring invoice

LastSentDate Date True

The date at which the last recurring invoice was sent.

LineItems String False

Line items of an estimate.

ManualChildInvoicesCount Integer True

Count of manual child invoices.

NextInvoiceDate Date True

Date of a next invoice.

Notes String True

Notes for this recurring invoice.

Orientation String True

Orientation of a page.

PlaceOfSupply String False

The place of supply is where a transaction is considered to have occurred for VAT purposes.

PageHeight String True

Height of the page.

PageWidth String True

Width of the page.

PaidInvoicesTotal Decimal True

Total number of paid invoices.

PaymentTerms Integer False

Net payment term for the customer.

PaymentTermsLabel String False

Label for the paymet due details.

PaymentOptionsPaymentGateways String False

Payment Gateway used for payment.

PhotoUrl String True

Photo URL for recurring invoices.

PricePrecision Integer True

The precision for the price.

ProjectDetails String True

Details of project.

RecurrenceFrequency String False

Type of recurrence frequency the invoice is recurring.

RecurrenceName String False

Name of the recurrence.

RecurrencePreferences String True

Recurrence preferences for the recurring invoice.

ReferenceNumber String False

Reference number of a recurring invoice.

RepeatEvery Integer False

Recurrence time of the invoice.

RoundoffValue Decimal True

Rounding off the values to precise number.

SalespersonId String True

Id of a sales person.

SalespersonName String False

Name of a sales person.

ShipmentCharges String True

Shipment charges of recurring invoice.

ShippingAddress String False

Shipment Address.

ShippingAddressAttention String True

Name of a person of shipping address.

ShippingAddressCity String False

City of a shipping address.

ShippingAddressCountry String False

Country of a shipping address.

ShippingAddressFax String False

Fax of a shipping address.

ShippingAddressPhone String True

Phone number of a shipping address.

ShippingAddressState String False

State of a shipping address.

ShippingAddressStreet2 String False

Street two details of a shipping address.

ShippingAddressZip String False

Zip code of a shipping address.

ShippingCharge Decimal False

Shipping charge.

StartDate Date False

Starting date of recurring invoice.

Status String True

Status of the recurring invoice.

SubTotal Decimal True

Sub total of recurring invoices.

SubTotalInclusiveOfTax Decimal True

Subtotal amount which are inclusive of tax.

TaxTotal Decimal True

Total amount for tax.

Taxes String True

Taxes.

TDSSummary String True

TDS summary.

TemplateId String False

Id of a template.

TemplateName String True

Name of a template.

Terms String True

Terms and Conditions apply of a recurring invoice.

Total Decimal True

Total of recurring invoices.

TransactionRoundingType String True

Type of round off used for transaction.

UnpaidChildInvoicesCount Integer True

Count of total number of unpaid child invoices.

UnpaidInvoicesBalance Decimal True

Total amount of unpaid invoices.

VatTreatment String False

VAT treatment for the recurring invoices.

GstNo String False

GST number.

GstTreatment String False

Choose whether the recurring invoice is GST registered/unregistered/consumer/overseas.

TaxTreatment String False

VAT treatment for the recurring invoice.

BcyShippingChargeTax Decimal True

Shipping charge tax in base currency.

BillingAddressStreet String True

Street of the billing address.

CanGenerateEwaybillUsingIrn Boolean True

Indicates if e-waybill can be generated using IRN.

ContactPersonsAssociated String False

Associated contact persons.

CreatedByNames String True

Name of the user who created the invoice.

CurrencyNameFormatted String True

Formatted currency name.

CustomerCustomFieldHash String True

Hash map for customer custom fields.

DiscountAccountId String True

ID of the discount account.

DiscountAccountName String True

Name of the discount account.

IsBackorder Boolean True

Indicates if it's a backorder.

IsLastChildInvoice Boolean True

Indicates if it's the last child invoice.

IsProgressInvoice Boolean True

Indicates if it's a progress invoice.

IsTdsAmountInPercent Boolean True

Indicates if TDS amount is in percentage.

IsGeneralPreference Boolean True

Indicates if general preference is applied.

LockDetails String True

Details about invoice locking.

OfflineCreatedDateWithTime Datetime True

Date and time when invoice was created offline.

ReferenceInvoice String True

Reference invoice details.

SalesChannel String True

Sales channel of the invoice.

SalesorderNumber String True

Sales order number associated with the invoice.

Salesorders String True

Associated sales orders.

ShippingAddressStreet String True

Street of the shipping address.

ShippingChargeAccountId String True

ID of the shipping charge account.

ShippingChargeAccountName String True

Name of the shipping charge account.

ShippingChargeExclusiveOfTax Decimal True

Shipping charge exclusive of tax.

ShippingChargeExclusiveOfTaxFormatted String True

Formatted shipping charge exclusive of tax.

ShippingChargeInclusiveOfTax Decimal True

Shipping charge inclusive of tax.

ShippingChargeInclusiveOfTaxFormatted String True

Formatted shipping charge inclusive of tax.

ShippingChargeTax Decimal True

Shipping charge tax.

ShippingChargeTaxExemptionCode String True

Shipping charge tax exemption code.

ShippingChargeTaxExemptionId String True

Shipping charge tax exemption ID.

ShippingChargeTaxFormatted String True

Formatted shipping charge tax.

ShippingChargeTaxId String True

Shipping charge tax ID.

ShippingChargeTaxName String True

Shipping charge tax name.

ShippingChargeTaxPercentage Decimal True

Shipping charge tax percentage.

ShippingChargeTaxType String True

Shipping charge tax type.

SubStatuses String True

Sub-statuses of the invoice.

SubjectContent String True

Subject content of the invoice email.

SubmittedByEmail String True

Email of the user who submitted the invoice.

SubmittedByName String True

Name of the user who submitted the invoice.

SubmittedByPhotoUrl String True

Photo URL of the user who submitted the invoice.

TaxRounding String True

Tax rounding type.

Taxes String True

Tax details.

TdsAmount Decimal True

TDS amount.

TdsCalculationType String True

TDS calculation type.

TdsOverridePreference String True

TDS override preference.

TdsPercent Decimal True

TDS percentage.

TdsSection String True

TDS section.

TdsSummary String True

TDS summary.

TdsTaxId String True

TDS tax ID.

IsReverseChargeApplied Boolean False

Indicates if reverse charge is applied.

CfdiUsage String False

CFDI usage.

CfdiReferenceType String True

CFDI reference type.

CustomBody String True

Custom body for the invoice email.

CustomSubject String True

Custom subject for the invoice email.

Reason String True

Reason for the action.

TaxAuthorityId String False

Tax authority ID.

TaxExemptionId String False

Tax exemption ID.

TaxId String False

Tax ID.

ExpenseId String True

Expense ID.

IgnoreAutoNumberGeneration Boolean True

Ignore auto number generation.

CData Python Connector for Zoho Books

RetainerInvoiceDetails

To list, add, update and delete of a retainer invoice.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following column and operator:

  • RetainerInvoiceId supports the '=' and IN operators.

NOTE: RetainerInvoiceId is required to query RetainerInvoiceDetails.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM RetainerInvoiceDetails WHERE RetainerInvoiceId = '1894663000000085023'
	SELECT * FROM RetainerInvoiceDetails WHERE RetainerInvoiceId IN (SELECT RetainerInvoiceId FROM RetainerInvoices)
	SELECT * FROM RetainerInvoiceDetails WHERE RetainerInvoiceId IN ('1894663000000085023','1894663000000085024')

Insert

INSERT can be executed by specifying the CustomerId and LineItems columns. The columns that are not read-only can be inserted optionally. The following is an example of how to insert into this table.

INSERT INTO RetainerInvoiceLineItems#TEMP (description,rate) VALUES ('Cloth description','1700') 

INSERT INTO RetainerInvoiceDetails (CustomerId, LineItems) VALUES ('3285934000000104002',RetainerInvoiceLineItems#TEMP ) 

INSERT can also be executed by specifying the LineItems column as a JSON array. The following is an example of how to insert using JSON array into this table.

INSERT INTO RetainerInvoiceDetails (CustomerId, LineItems) VALUES ('3285934000000104023', '[{"Description":"Cloth description", "Rate":"1700"}]')

Update

UPDATE can be executed by specifying the RetainerINVOICEID in the WHERE Clause. The columns that are not read-only can be updated. For example:

INSERT INTO RetainerInvoiceLineItems#TEMP (description,rate) VALUES ('Cloth description updated','1700') 

UPDATE RetainerInvoiceDetails SET CustomerId = '3285934000000104002', LineItems = 'RetainerInvoiceLineItems#TEMP' WHERE RetainerINVOICEID = '3285934000000268036'

UPDATE can also be executed by specifying the LineItems column as a JSON array. The following is an example of how to update using JSON array into this table.

UPDATE RetainerInvoiceDetails SET CustomerId = '3285934000000085043', LineItems = '[{"Description":"Cloth description updated", "Rate":"1700"}]' WHERE RetainerInvoiceId = '3285934000000268036'

Delete

DELETE can be executed by specifying the RetainerINVOICEID in the WHERE Clause For example:

DELETE FROM RetainerInvoiceDetails WHERE RetainerINVOICEID = '3285934000000268036'

Columns

Name Type ReadOnly References SupportedOperators Description
RetainerInvoiceId [KEY] String True

RetainerInvoices.RetainerInvoiceId

Id of retainer invoice.

RetainerinvoiceNumber String True

Number of a retainer invoice.

AllowPartialPayments Boolean True

Check if the retainer invoice allows partial payments.

AttachmentName String True

Name of the attachment.

Balance Decimal True

Total amount left.

BillingAddress String True

Billing address of a retainer invoice.

BillingAddressAttention String True

Name of a person in billing address.

BillingAddressCity String True

City of a billing address.

BillingAddressCountry String True

Country of a billing address.

BillingAddressFax String True

Fax of a billing address.

BillingAddressPhone String True

Phone number of a billing address.

BillingAddressState String True

State of a billing address.

BillingAddressStreet2 String True

Street two of a billing address.

BillingAddressZip String True

ZIP code of a billing address.

CanSendInMail Boolean True

Check if retainer invoice can be send in mail.

ClientViewedTime Datetime True

Last time when client viewed retainer invoice.

ColorCode String True

Color code of retainer invoice.

ContactPersons String True

Contact Persons

CreatedById String True

Users.UserId

Id of a user who has created retainer invoice.

CreatedTime Datetime True

Time at which the retainer invoice was created.

CurrencyCode String True

Currency code of the customer's currency.

CurrencyId String True

Currencies.CurrencyId

Currency Id of the customer's currency.

CurrencySymbol String True

Symbol of currency used for retainer invoice.

CurrentSubStatus String True

Current sub status of a retainer invoice.

CurrentSubStatusId String True

Current sub status Id of a retainer invoice.

CustomerId String False

Contacts.ContactId

Id of the customer or vendor.

CustomerName String True

Name of the customer or vendor.

Date Date False

Date of a retainer invoice.

ExchangeRate Decimal True

Exchange rate of the currency.

InvoiceUrl String True

URL of invoice.

IsEmailed Boolean True

Check if the retainer invoice is emailed.

IsInclusiveTax Boolean True

Check if the retainer invoice is inclusive of tax.

IsPreGst Boolean True

Check if the retainer invoice is applied by pre GST.

IsViewedByClient Boolean True

Check if retainer invoice is viewed by client.

LastModifiedById String True

Users.UserId

Id of a user who has last modified the retainer invoice.

LastModifiedTime Datetime True

The time of last modification of the retainer invoice.

LastPaymentDate Date True

Date of payment which was last paid.

Notes String False

Notes of retainer invoice.

Orientation String True

Orientation of a page.

PageHeight String True

Height of a page.

PageWidth String True

Width of a page.

PaymentDrawn Decimal True

The payment which was drawn for retainer invoice.

PaymentOptionPaymentGateways String False

Payment options for the retainer invoice, online payment gateways and bank accounts.

PaymentMade Decimal True

Payment which was made for the invoice.

PricePrecision Integer True

The precision for the price.

ReferenceNumber String False

Reference number of a retainer invoice.

RoundoffValue Decimal True

Round Off value.

ShippingAddress String True

Shipment Address.

ShippingAddressAttention String True

Name of a person of shipping address.

ShippingAddressCity String True

City of a shipping address.

ShippingAddressCountry String True

Country of a shipping address.

ShippingAddressFax String True

Fax of a shipping address.

ShippingAddressPhone String True

Phone number of a shipping address.

ShippingAddressState String True

State of a shipping address.

ShippingAddressStreet2 String True

Street two details of a shipping address.

ShippingAddressZip String True

Zip code of a shipping address.

Status String True

Status of the retainer invoice.

SubTotal Decimal True

Sub total of retainer invoices.

SubmittedBy String True

Detail of the user who has submitted the retainer invoice.

SubmittedDate Date True

Date of submission of retainer invoice.

TemplateId String False

Id of a template.

TemplateName String True

Name of a template.

TemplateType String True

Type of a template.

Terms String False

Terms and Conditions apply of a retainer invoice.

Total Decimal True

Total of retainer invoices.

TransactionRoundingType String True

Type of round off used for transaction.

VatTreatment String True

VAT treatment for the retainer invoice.

PlaceOfSupply String False

The place of supply is where a transaction is considered to have occurred for VAT purposes.

TaxSpecification String True

Working of tax when specifying special tax options and tax methods for earnings codes.

UnusedRetainerPayments Decimal True

Payment of the retainer invoice which is unused.

LineItems String False

Line items of an estimate.

AchPaymentInitiated Boolean True

Whether ACH payment has been initiated for this retainer invoice.

ApproversList String True

List of approvers for the retainer invoice in JSON format.

Documents String True

List of attached documents for this retainer invoice in JSON format.

Payments String True

Payments applied to this retainer invoice in JSON format.

SubStatuses String True

History or list of sub-statuses for the retainer invoice in JSON format.

SubmittedByEmail String True

Email address of the user who submitted the retainer invoice.

SubmittedByName String True

Name of the user who submitted the retainer invoice.

SubmittedByPhotoUrl String True

Photo URL of the user who submitted the retainer invoice.

TaxRounding String True

Tax rounding method applied to the retainer invoice.

Taxes String True

List of individual tax objects in JSON format.

IgnoreAutoNumberGeneration Boolean False

Set to true to ignore automatic number generation when creating/updating this invoice.

CData Python Connector for Zoho Books

SalesOrderDetails

To list, add, update and delete a sales order.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following column and operator:

  • SalesorderId supports the '=' and IN operators.

NOTE: SalesorderId is required to query SalesOrderDetails.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM SalesOrderDetails WHERE SalesorderId = '1894553000000077349'
	SELECT * FROM SalesOrderDetails WHERE SalesorderId IN (SELECT SalesorderId FROM SalesOrders)
	SELECT * FROM SalesOrderDetails WHERE SalesorderId IN ('1894553000000077349','1894553000000077350')

Insert

INSERT can be executed by specifying the CustomerId and LineItems columns. The columns that are not read-only can be inserted optionally. The following is an example of how to insert into this table.

INSERT INTO SalesOrderLineItems#TEMP (Name, itemid, rate, quantity) VALUES ('Cloth-Jeans' , '3285934000000104097' , '1700' , '1')

INSERT INTO SalesorderDetails (CustomerId, LineItems) VALUES ('3285934000000104002', SalesorderLineItems#TEMP )

INSERT can also be executed by specifying the LineItems column as a JSON array. The following is an example of how to insert using JSON array into this table.

INSERT INTO SalesorderDetails (CustomerId, LineItems) VALUES ('3285934000000104023', '[{"Name":"Cloth-Jeans3", "ItemId":"3285934000000104097", "Rate":"1700", "Quantity":"1"}]')

Update

UPDATE can be executed by specifying the SalesorderID in the WHERE Clause. The columns that are not read-only can be updated. For example:

INSERT INTO SalesOrderLineItems#TEMP (Name, itemid, rate, quantity) VALUES ('Cloth-Jeans', '3285934000000104097', '1700', '1')

Update SalesorderDetails SET CustomerId = '3285934000000104002', LineItems = 'SalesorderLineItems#TEMP' WHERE SalesorderID = '3285934000000259151'

UPDATE can also be executed by specifying the LineItems column as a JSON array. The following is an example of how to update using JSON array into this table.

UPDATE SalesorderDetails SET CustomerId = '3285934000000085043', LineItems = '[{"Name":"Cloth-Jeans", "ItemId":"3285934000000104097", "Rate":"1700", "Quantity":"1"}]' WHERE SalesorderID = '3285934000000259151'

Delete

DELETE can be executed by specifying the SalesorderID in the WHERE Clause For example:

DELETE FROM SalesorderDetails WHERE SalesorderID = '3285934000000259151'

Columns

Name Type ReadOnly References SupportedOperators Description
SalesorderId [KEY] String True

SalesOrders.SalesorderId

Id of sales order.

AccountIdentifier String True

Account identifier for sales order.

Adjustment Decimal False

Adjustments made to the sales order.

AdjustmentDescription String False

Description of adjustments made to the sales order.

ApproverId String True

Users.UserId

Id of an approver.

ApproversList String True

Approvers list.

AttachmentName String True

Name of the attachment.

Balance String True

Balance.

AvataxUseCode String False

Used to group like customers for exemption purposes. It is a custom value that links customers to a tax rule.

AvataxExemptNo String False

Exemption certificate number of the customer.

BcyAdjustment Decimal True

Adjustment made in Base Currency.

BcyDiscountTotal Decimal True

Total amount of discount in Base Currency.

BcyShippingCharge Decimal True

Shipping charge applied in Base Currency.

BcySubTotal Decimal True

Sub total of Base Currency.

BcyTaxTotal Decimal True

Total tax of Base Currency.

BcyTotal Decimal True

Total Base Currency.

BillingAddressId String False

Id of the Billing Address

ShippingAddressId String False

Id of the Shipping Address

BillingAddress String True

Billing address of a sales order.

BillingAddressAttention String True

Name of a person in billing address.

BillingAddressCity String True

City of a billing address.

BillingAddressCountry String True

Country of a billing address.

BillingAddressFax String True

Fax of a billing address.

BillingAddressPhone String True

Phone number of a billing address.

BillingAddressState String True

State of a billing address.

BillingAddressStreet2 String True

Street two of a billing address.

BillingAddressZip String True

ZIP code of a billing address.

CanSendInMail Boolean True

Check if the sales order can be send in mail.

ColorCode String True

Color code for sales order.

ContactCreditLimit Decimal True

ContactCreditLimit.

ContactCustomerBalance Decimal True

ContactCustomerBalance.

ContactIsCreditLimitMigrationCompleted Boolean True

ContactIsCreditLimitMigrationCompleted.

ContactUnusedCustomerCredits Decimal True

ContactUnusedCustomerCredits.

ContactCategory String True

Category of a contact.

ContactPersonDetails String True

Contact details of persons of a contact.

ContactPersons String True

Contact persons of a contact.

CreatedById String True

Users.UserId

Id of a user who has created sales order.

CreatedByName String True

Name of a user who has created sales order.

CreatedByEmail String True

Email of a user who has created sales order.

CreatedDate Date True

Date at which the sales order was created.

CreatedTime Datetime True

Time at which the sales order was created.

CurrencyCode String True

Currency code of the customer's currency.

CurrencyId String False

Currencies.CurrencyId

Currency Id of the customer's currency.

CurrencySymbol String True

Currency symbol of the customer's currency.

CurrentSubStatus String True

Current sub status of a sales order.

CurrentSubStatusId String True

Current sub status Id of a sales order.

CustomerId String False

Contacts.ContactId

Id of the customer or vendor.

CustomerName String True

Name of the customer or vendor.

CustomFields String False

Custom fields of the contact.

Date Date False

Date of a sales order.

DeliveryMethod String False

Method of a delivery.

DeliveryMethodId String True

Method Id of a delivery.

Discount String False

Discount given to specific item in sales order.

DiscountAppliedOnAmount Decimal True

Amount in which discount was applied.

DiscountPercent Double True

Percentage applied for discount.

DiscountTotal Decimal True

Total amount get on discount.

DiscountType String False

Type of discount applied in sales order.

EntityTags String True

EntityTags.

EstimateId String False

Estimates.EstimateId

Id of an estimate.

ExchangeRate Decimal False

Exchange rate of the currency.

GstNo String False

GST number.

GstTreatment String False

Choose whether the estimate is GST registered/unregistered/consumer/overseas. .

HasDiscount Boolean True

Check if the sales order quantity has discount.

HasQtyCancelled Boolean True

Check if the sales order quantity has been cancelled.

HasShippingAddress Boolean True

Check if the sales order quantity has shipping address.

IntegrationId String True

Id of sales order integration.

InvoiceConversionType String True

Type of invoice conversion applied for sales order.

InvoicedStatus String True

Status of invoiced sales order.

IsDiscountBeforeTax Boolean False

Check if the sales order can be applied discount before tax.

IsUpdateCustomer Boolean False

Boolean to update billing address of customer.

IsEmailed Boolean True

Check if the sales order is emailed.

IsInclusiveTax Boolean False

Check if the sales order is inclusive tax.

IsPreGst Boolean True

Check if pre GST is applied.

LastModifiedById String True

Users.UserId

Id of the user last modified.

LastModifiedTime Datetime True

The time of last modification of the sales order.

LineItems String False

Line items of an estimate.

MerchantId String False

Id of the merchant.

MerchantName String True

Name of the merchant.

Notes String False

Notes of sales order.

NotesDefault String False

Default Notes for the Sales Order.

OfflineCreatedDateWithTime Datetime True

OfflineCreatedDateWithTime.

OrderStatus String True

Status of order.

Orientation String True

Orientation of page.

PageHeight String True

Height of page.

PageWidth String True

Width of page.

PricePrecision Integer True

The precision for the price.

PlaceOfSupply String False

The place of supply is where a transaction is considered to have occurred for VAT purposes.

ReferenceNumber String False

Reference number of a sales order.

RoundoffValue Decimal True

Round Off value of sales order.

SalesorderNumber String False

Number of sales order.

SalespersonId String False

Id of a sales person.

SalespersonName String False

Name of the sales person.

ShipmentDate Date False

Date when shipment was done for sale order.

ShippingAddress String True

Shipment Address.

ShippingAddressAttention String True

Name of a person of shipping address.

ShippingAddressCity String True

City of a shipping address.

ShippingAddressCountry String True

Country of a shipping address.

ShippingAddressFax String True

Fax of a shipping address.

ShippingAddressPhone String True

Phone number of a shipping address.

ShippingAddressState String True

State of a shipping address.

ShippingAddressStreet2 String True

Street two details of a shipping address.

ShippingAddressZip String True

Zip code of a shipping address.

ShippingCharge Decimal False

Shipping charge.

Status String True

Status of the sales order.

SubTotal Decimal True

Sub total of sales orders.

SubTotalInclusiveOfTax Decimal True

Subtotal amount which are inclusive of tax.

SubmittedBy String True

Detail of the user who has submitted the sales order.

SubmittedDate Date True

Date when submission was made of sales order.

SubmitterId String True

Users.UserId

Id of a submitter.

TaxTotal Decimal True

Total amount of tax.

TemplateId String False

Id of a template.

TemplateName String True

Name of a template.

TemplateType String True

Type of template.

Terms String False

Terms and Conditions apply of a sales order.

TermsDefault String False

Default Terms of the Sales Order

Total Decimal True

Total of sales order.

TransactionRoundingType String True

Type of round off used for transaction.

VatTreatment String False

VAT treatment for the estimates.

TaxTreatment String False

VAT treatment for the Estimate.

BcyShippingChargeTax Decimal True

Shipping charge tax in base currency.

BillingAddressCountryCode String True

Country code of the billing address.

BillingAddressStateCode String True

State code of the billing address.

ComputationType String True

Type of computation for the sales order.

ContactPersonsAssociated String True

Associated contact persons.

Documents String True

Documents associated with the sales order.

Invoices String True

Invoices associated with the sales order.

IsAdvTrackingInPackage Boolean True

Indicates if advanced tracking is in package.

IsTestOrder Boolean True

Indicates if it is a test order.

PaidStatus String True

Payment status of the sales order.

PaymentTerms Integer True

Payment terms in days.

PaymentTermsLabel String True

Label for payment terms.

PickupLocationId String True

ID of the pickup location.

PurchaseOrders String True

Purchase orders associated with the sales order.

ShippingAddressCountryCode String True

Country code of the shipping address.

ShippingAddressStateCode String True

State code of the shipping address.

ShippingChargeExclusiveOfTax Decimal True

Shipping charge exclusive of tax.

ShippingChargeExclusiveOfTaxFormatted String True

Formatted shipping charge exclusive of tax.

ShippingChargeInclusiveOfTax Decimal True

Shipping charge inclusive of tax.

ShippingChargeInclusiveOfTaxFormatted String True

Formatted shipping charge inclusive of tax.

ShippingChargeTax Decimal True

Shipping charge tax amount.

ShippingChargeTaxExemptionCode String True

Shipping charge tax exemption code.

ShippingChargeTaxExemptionId String True

Shipping charge tax exemption ID.

ShippingChargeTaxFormatted String True

Formatted shipping charge tax.

ShippingChargeTaxId String True

Shipping charge tax ID.

ShippingChargeTaxName String True

Shipping charge tax name.

ShippingChargeTaxPercentage Decimal True

Shipping charge tax percentage.

ShippingChargeTaxType String True

Shipping charge tax type.

ShippingDetails String True

Shipping details.

Source String True

Source of the sales order.

SubTotalExclusiveOfDiscount Decimal True

Subtotal exclusive of discount.

SubmittedByEmail String True

Email of the submitter.

SubmittedByName String True

Name of the submitter.

SubmittedByPhotoUrl String True

Photo URL of the submitter.

TaxRounding String True

Tax rounding type.

Taxes String True

Taxes applied to the sales order.

TdsAmount Decimal True

TDS amount.

TdsCalculationType String True

TDS calculation type.

TdsOverridePreference String True

TDS override preference.

TdsPercent Decimal True

TDS percentage.

TdsSection String True

TDS section.

TdsSummary String True

TDS summary.

TdsTaxId String True

TDS tax ID.

TdsTaxName String True

TDS tax name.

TotalQuantity Decimal True

Total quantity of items.

TrackingUrl String True

Tracking URL for the sales order.

ZcrmPotentialId String False

Zoho CRM Potential ID.

ZcrmPotentialName String False

Zoho CRM Potential Name.

IgnoreAutoNumberGeneration Boolean False

Ignore auto number generation.

CrmOwnerId String False

CRM Owner ID.

CrmCustomReferenceId String False

CRM Custom Reference ID.

IsReverseChargeApplied Boolean False

Is reverse charge applied.

TaxId String False

Tax ID.

TaxAuthorityId String False

Tax authority ID.

TaxExemptionId String False

Tax exemption ID.

TaxAuthorityName String False

Tax authority name.

TaxExemptionCode String False

Tax exemption code.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
TotalFiles Integer

Total number of files.

Doc String

Document that is to be attached.

CData Python Connector for Zoho Books

Tasks

To list, add, update and delete tasks added to a project. Also, get the details of a task.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • ProjectId supports the '=' comparison.
  • TaskId supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM Tasks WHERE ProjectId = '1894553000000078367' AND TaskId = '1894553000000085708'

Insert

INSERT can be executed by specifying TaskName and ProjectId. The columns that are not read-only can be inserted optionally. The following is an example of how to insert into this table.

INSERT INTO Tasks (ProjectId, TaskName) VALUES ('1484772000000068020','Test1')

Update

UPDATE can be executed by specifying the TaskId and ProjectId in the WHERE Clause. The columns that are not read-only can be updated. For example:

UPDATE Tasks SET Description = 'test' WHERE TaskId = '1484772000000147005' AND ProjectId = '1484772000000068020'

Delete

DELETE can be executed by specifying the TaskId and ProjectId in the WHERE Clause For example:

DELETE FROM Tasks WHERE TaskId = '1484772000000147005' AND ProjectId = '1484772000000068020'

Columns

Name Type ReadOnly References SupportedOperators Description
TaskId [KEY] String True

Id of a task.

ProjectId [KEY] String True

Projects.ProjectId

Id of the project.

CurrencyId String True

Currencies.CurrencyId

Currency Id of the customer's currency.

TaskName String False

Name of the task.

Description String False

Description of the task.

ProjectName String True

Name of the project.

CustomerId String True

Contacts.ContactId

Id of the customer or vendor.

CustomerName String True

Name of the customer or vendor.

BilledHours String True

Total number of billed hours for a task.

BudgetHours Integer False

A project comprises of a single or multiple tasks that need to be completed.

LogTime String True

Time logs for the task.

UnBilledHours String True

Total number of hours which was un-billed.

Rate Decimal False

Rate for task.

Status String True

Status of the task.

IsBillable Boolean True

Check if tasks is billable or not.

ZohopeopleJobId String True

ID of the job as defined in Zoho People

CData Python Connector for Zoho Books

Taxes

To list, add, update and delete simple and compound taxes. Also, get the details of a simple or compound tax.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following column and operator:

  • TaxId supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM Taxes WHERE TaxId = '1894553000000077244'

Insert

INSERT can be executed by specifying the TaxName and TaxPercentage columns. The columns that are not read-only can be inserted optionally. The following is an example of how to insert into this table.

INSERT INTO Taxes (TaxName, TAXPERCENTAGE) VALUES ('tax1', '3') 

Update

UPDATE can be executed by specifying the TaxId in the WHERE Clause. The columns that are not read-only can be updated. For example:

UPDATE Taxes SET TaxName = 'TaxUpdated', TaxPercentage = '5' WHERE TaxId = '3350895000000089005'

Delete

DELETE can be executed by specifying the TaxId in the WHERE Clause For example:

DELETE FROM Taxes WHERE TaxId = '3350895000000089001'

Columns

Name Type ReadOnly References SupportedOperators Description
TaxId [KEY] String True

Id of tax.

TaxName String False

Name of the tax.

TaxPercentage Integer False

Percentage applied for tax.

TaxType String False

Type of tax.

TaxSpecificType String False

Type of tax.

TaxAuthorityId String False

Id of a tax authority.

TaxAuthorityName String False

Name of the tax authority.

TaxSpecification String True

Working of tax when specifying special tax options and tax methods for earnings codes.

TdsPayableAccountId String True

BankAccounts.AccountId

Account Id of TDS payable.

Country String True

Name of the country for taxes.

CountryCode String False

Country code for taxes.

IsDefaultTax Boolean True

Check if the tax is default.

IsValueAdded Boolean False

Check if Tax is Value Added.

IsEditable Boolean False

Check if the tax is editable.

PurchaseTaxExpenseAccountId String False

Account Id in which Purchase Tax will be Computed.

UpdateRecurringInvoice Boolean False

Check if recurring invoice should be updated.

UpdateRecurringExpense Boolean False

Check if Draft Invoices should be updated.

UpdateDraftInvoice Boolean False

Check if Draft Invoices should be updated.

UpdateRecurringBills Boolean False

Check if Subscriptions should be updated.

UpdateDraftSo Boolean False

Check if Subscriptions should be updated.

UpdateSubscription Boolean False

Check if Subscriptions should be updated.

UpdateProject Boolean False

Check if Projects should be updated.

DiffRateReason String True

Reason of Rate Difference.

EndDate Date True

End date for the tax.

IsInactive Boolean True

Indicate whether the tax is inactive or not.

LastModifiedTime Datetime True

Time at which the tax is modified.

OutputTaxAccountName String True

Tax Account Name.

StartDate Date True

Start date for the tax.

Status String True

Status the tax.

TaxAccountId String True

Status the tax.

TaxNameFormatted String True

Status the tax.

TaxFactor String False

Type of Tax Factor.

The allowed values are rate, share.

CData Python Connector for Zoho Books

TaxGroups

Read, Insert, Update and Delete Tax Groups.

g

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • TaxGroupId supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM TaxGroups WHERE TaxGroupId = '3255827000000076031'

Insert

INSERT can be executed by specifying the TaxGroupName, Taxes column. The columns that are not read-only can be inserted optionally. The following is an example of how to insert into this table.

INSERT INTO TaxGroups (TaxGroupName, TAXES) VALUES ('groupinsert', '3255827000000076025, 3255827000000076013, 3255827000000076007') 

Update

UPDATE can be executed by specifying the taxgroupid in the WHERE Clause. The columns that are not read-only can be updated. For example:

UPDATE Taxgroups SET TaxGroupName = 'TaxUpdated' WHERE taxgroupid = 3255827000000077002

Delete

DELETE can be executed by specifying the TaxGroupId in the WHERE Clause For example:

DELETE FROM TaxGroups WHERE TaxGroupId = '3255827000000077002'

Columns

Name Type ReadOnly References SupportedOperators Description
TaxGroupId [KEY] String True =

Id of the Tax Group

TaxGroupName String False

Name of the tax group to be created.

TaxGroupPercentage Double True

Tax group percentage

Taxes String False

Comma Seperated list of tax Ids that are to be associated to the tax group.

TaxType String True

Tax type of the Tax Group

StartDate Date True

Start date of the tax group.

EndDate Date True

End date of the tax group.

CData Python Connector for Zoho Books

TimeEntries

To list, add, update and delete time entries.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • TimeEntryId supports the '=' comparison.
  • ProjectId supports the '=' comparison.
  • UserId supports the '=' comparison.
  • FromDate supports the '=' comparison.
  • ToDate supports the '=' comparison.
  • TimeEntryFilter supports the '=' comparison.

By default, the response shows the time entries of the current month only.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM TimeEntries WHERE TimeEntryId = '1894553000000085710' AND UserId = '1894553000000068001'

    SELECT * FROM TimeEntries WHERE TimeEntryFilter = 'Date.All'

Insert

INSERT can be executed by specifying TaskId, UserId, ProjectId and LogDate columns. The columns that are not read-only can be inserted optionally. The following is an example of how to insert into this table.

INSERT INTO TimeEntries(TaskId, UserId, ProjectId, LogDate) VALUES ('1484772000000033128', '1484772000000017001', '1484772000000033118', '2023-10-25')

Update

UPDATE can be executed by specifying the TimeEntryId in the WHERE Clause. The columns that are not read-only can be updated. For example:

UPDATE TimeEntries SET LogDate = '2023-10-25', TaskId = '1484772000000033128', UserId = '1484772000000017001', ProjectId = '1484772000000033118' WHERE TimeEntryId = '1484772000000033130'

Delete

DELETE can be executed by specifying the TimeEntryId in the WHERE Clause For example:

DELETE FROM TimeEntries WHERE TimeEntryId = '1484772000000033130'

Columns

Name Type ReadOnly References SupportedOperators Description
TimeEntryId [KEY] String True

Id of time entry.

TimerDurationInMinutes Integer True

Timer duration in minutes.

TimerDurationInSeconds Integer True

Timer duration in seconds.

TimerStartedAt String True

Time when the timer started.

BeginTime String False

Time the user started working on this task.

BilledStatus String True

Status which are billed.

CostRate Decimal False

Hourly cost rate.

CanBeInvoiced Boolean True

Check if the entry can be invoiced.

CanContinueTimer Boolean True

Check if the entry can continue the timer.

CanCreateClientApproval Boolean True

Check if the entry can create client approval.

CanCreateUserApproval Boolean True

Check if the entry can create user approval.

CreatedTime Datetime True

Time at which the time entry was created.

CustomerId String True

Contacts.ContactId

Id of the customer or vendor.

CustomerName String True

Name of the customer or vendor.

EndTime String False

Time the user stopped working on this task.

InvoiceId String True

Invoices.InvoiceId

Id of an invoice.

InvoiceNumber String True

Number of an invoice.

IsBillable Boolean False

Check if time entries is billable.

IsClientApprovalNeeded Boolean True

Check if the client approval is needed in time entries.

IsCurrentUser Boolean True

Check if it is a current user of time entries.

IsPaused Boolean True

Check if time entries is paused.

LogDate Date False

Log of date.

LogTime String False

Log of time.

Notes String False

Notes for this time entry.

ProjectHeadId String True

Id of project head.

ProjectHeadName String True

Name of project head.

ProjectId String False

Projects.ProjectId

Id of a project.

ProjectName String True

Name of the project.

TaskId String False

Tasks.TaskId

Id of task.

TaskName String True

Name of the task.

UserId String False

Users.UserId

Id of a user.

UserName String True

Name of user for time entries.

BillingRateFrequency String True

Frequency for billing rates

CustomerFirstName String True

First name of the customer.

LoggedDay String True

Total Days logged.

ZohopeopleTimeEntryId String True

Unique identifier for the corresponding time entry in Zoho People.

TimerStartedAtUtcTime Datetime True

UTC Time.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
FromDate Date

Date from which the time entries logged to be fetched.

ToDate Date

Date up to which the time entries logged to be fetched.

TimeEntryFilter String

Filter time entries by date and status.

The allowed values are Date.All, Date.Today, Date.ThisWeek, Date.ThisMonth, Date.ThisQuarter, Date.ThisYear, Date.PreviousDay, Date.PreviousWeek, Date.PreviousMonth, Date.PreviousQuarter, Date.PreviousYear, Date.CustomDate, Status.Unbilled, Status.Invoiced.

CData Python Connector for Zoho Books

Users

To list, add, update and delete users in the organization. Also, get the details of a user.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • UserId supports the '=' comparison.
  • Status supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM Users WHERE Status = 'All'

    SELECT * FROM Users ORDER BY UserRole DESC

Insert

INSERT can be executed by specifying the Name and Email columns. The columns that are not read-only can be inserted optionally. The following is an example of how to insert into this table.

INSERT INTO Users (Name, Email, UserRole) VALUES ('user1', 'user@cdata.com', 'staff') 

Update

UPDATE can be executed by specifying the UserId in the WHERE Clause. The columns that are not read-only can be updated. For example:

UPDATE Users SET Name = 'User Name Change', Email = 'user@cdata.com', UserRole = 'staff' WHERE UserId = '3350895000000089005'

Delete

DELETE can be executed by specifying the UserId in the WHERE Clause For example:

DELETE FROM Users WHERE UserId = '3350895000000089001'

Columns

Name Type ReadOnly References SupportedOperators Description
UserId [KEY] String True

Id of a user.

UserRole String True

Role of a user.

UserType String True

Type of a user.

CreatedTime Datetime True

Time at which the user was created.

Email String False

Email Id of a user.

IsAssociatedForApproval Boolean True

Check if the user is associated for the approval.

IsClaimant Boolean True

Check if the user is claimant.

IsCustomerSegmented Boolean True

Check if the user is customer segmented.

IsEmployee Boolean True

Check if the user is an employee.

Name String False

Name of the user.

PhotoUrl String True

Photo URL of the user.

RoleId String False

Role Id of a user.

CostRate Double False

Hourly cost rate.

Status String True

Status of the user.

The allowed values are All, Active, Inactive, Invited, Deleted.

InvitationType String True

Indicates the invitation type used for the user (e.g., email, link).

IsCurrentUser Boolean True

True if this user is the currently authenticated user.

IsSuperAdmin Boolean True

True if the user has super admin privileges.

IsVendorSegmented Boolean True

Indicates if the user is configured as vendor segmented.

Mobile String True

Mobile phone number for the user.

AssociatedClients String True

List of client associations for the user, in JSON format.

BillingRate Double True

Billing rate for the user.

DefaultBranchId String True

ID of the default branch assigned to the user.

EmailIds String True

List of email IDs associated with the user, in JSON format.

IsAccountant Boolean True

True if the user has accountant role/permissions.

IsAssociatedWithOrgEmail Boolean True

True if user's email is associated with the organization email.

Role String True

Detailed role information for the user, often as a JSON object or role display name.

CData Python Connector for Zoho Books

VendorCreditDetails

To list, add, update and delete details of a vendor credit.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following column and operator:

  • VendorCreditId supports the '=' and IN operators.

NOTE: VendorCreditId is required to query VendorCreditDetails.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM VendorCreditDetails WHERE VendorCreditId = '1894545000000083308'
	SELECT * FROM VendorCreditDetails WHERE VendorCreditId IN (SELECT VendorCreditId FROM VendorCredits)
	SELECT * FROM VendorCreditDetails WHERE VendorCreditId IN ('1894545000000083308','1894545000000083309')

Insert

INSERT can be executed by specifying the VendorId, LineItems, and VendorCreditNumber columns. The columns that are not read-only can be inserted optionally. The following is an example of how to insert into this table.

INSERT INTO VendorCreditLineItems#TEMP (Name, itemid, rate, quantity) VALUES ('Cloth-Jeans3', '3285934000000104097', '1700', '1') 

INSERT INTO VendorCreditDetails (VendorId, lineitems, VendorCreditNumber) VALUES ('3285934000000104023', VendorCreditLineItems#Temp, '9')

INSERT can also be executed by specifying the LineItems column as a JSON array. The following is an example of how to insert using JSON array into this table.

INSERT INTO VendorCreditDetails (VendorId, LineItems, VendorCreditNumber) VALUES ('3285934000000104023', '[{"Name":"Cloth-Jeans3", "ItemId":"3285934000000104097", "Rate":"1700", "Quantity":"1"}]','9')

Update

UPDATE can be executed by specifying the VendorCreditId in the WHERE Clause. The columns that are not read-only can be updated. The VendorCreditNumber and LineItems columns are required for updating. For example:

INSERT INTO VendorCreditLineItems#TEMP (Name,itemid,rate,quantity) VALUES ('Cloth-Jeans3','3285934000000104097','1700','1') 

UPDATE VendorCreditDetails SET VendorId = '3285934000000104002', VendorCreditNumber = 'DN-00001', LineItems = 'VendorCreditLineItems#TEMP' WHERE VendorCreditID = '3285934000000259151'

UPDATE can also be executed by specifying the LineItems column as a JSON array. The following is an example of how to update using JSON array into this table.

UPDATE VendorCreditDetails SET VendorId = '1484772000000063218', VendorCreditNumber = 'DN-00002', LineItems = '[{"Name":"Cloth-Jeans", "ItemId":"3285934000000104097", "Rate":"1700", "Quantity":"1"}]' WHERE VendorCreditID = '1484772000000063218'

Delete

DELETE can be executed by specifying the VendorCreditId in the WHERE Clause For example:

DELETE FROM VendorCreditDetails WHERE VendorCreditId = '3350895000000089001'

Columns

Name Type ReadOnly References SupportedOperators Description
VendorCreditId [KEY] String True

VendorCredits.VendorCreditId

Id of a vendor credit.

VendorCreditNumber String False

Number of vendor credit.

VendorId String False

Id of the vendor the vendor credit has been made.

VendorName String True

Name of the vendor the vendor credit has been made.

Adjustment Decimal True

Adjustments made to the vendor credit.

AdjustmentDescription String True

Description of adjustments made to the vendor credit.

ApproverId String True

Users.UserId

Id of a approver.

ApproversList String True

List of approvers.

Balance Decimal True

Total balance of vendor credit.

BillId String False

Bills.BillId

Id of a Bill.

BillNumber String True

Number of a Bill.

BillsCredited String True

BillsCredited.

CanAmendTransactions Boolean True

CanAmendTransactions.

ColorCode String True

Color code of vendor credit.

Comments String True

Comments.

ContactCategory String True

Category of a contact.

CreatedTime Datetime True

Time at which the vendor credit was created.

CurrencyCode String True

Currency code of the customer's currency.

CustomFields String True

Custom Fields defined for Journal

CurrencyId String True

Currencies.CurrencyId

Currency Id of the customer's currency.

CurrencySymbol String True

CurrencySymbol.

CurrentSubStatus String True

Current sub status of a vendor credit.

CurrentSubStatusId String True

Current sub status Id of a vendor credit.

Documents String False

List of files to be attached to a particular transaction.

Date Date False

Vendor Credit date.

DestinationOfSupply String False

Place where the goods/services are supplied to.

Discount String True

Discount amount applied to vendor credit.

DiscountAccountId String True

BankAccounts.AccountId

Account Id of the discount.

DiscountAmount Decimal True

Amount of the discount.

DiscountAppliedOnAmount Decimal True

Amount applied on discount.

DiscountSetting String True

Settings of discount.

ExchangeRate Decimal False

Exchange rate applied for vendor credits.

FiledInVatReturnId String True

VAT return Id of bill which was filed.

FiledInVatReturnName String True

VAT return name of bill which was filed.

FiledInVatReturnType String True

VAT return type of bill which was filed.

GstNo String False

GST number.

GstReturnDetailsReturnPeriod String True

Return period of GST return details.

GstReturnDetailsStatus String True

Status of GST return details.

GstTreatment String False

Choose whether the vendor credit is GST registered/unregistered/consumer/overseas.

HasNextVendorcredit Boolean True

Check if there is next vendor credit.

IsDiscountBeforeTax Boolean True

Check if discount is applicable before tax.

IsInclusiveTax Boolean False

Check if tax is inclusive.

IsUpdateCustomer Boolean False

Check if customer should be updated.

IsPreGst Boolean True

Check if pre GST is applied.

IsReverseChargeApplied Boolean True

Check if the reverse charge is applied.

LastModifiedTime Datetime True

The time of last modification of the vendor credits.

Notes String False

Notes of vendor credit.

Orientation String True

Orientation of vendor credit.

PageHeight String True

Height of a page.

PageWidth String True

Width of a page.

PricebookId String False

Id of the pricebook.

PricePrecision Integer True

The precision for the price.

ReasonForDebitNote String True

Specified reason for debit note.

ReferenceNumber String False

Reference number of vendor credit.

SourceOfSupply String False

Source of supply.

Status String True

Status of the vendor credit.

SubTotal Decimal True

Sub total of vendor credits.

SubTotalInclusiveOfTax Decimal True

Amount if the subtotal is inclusive of tax.

SubmittedBy String True

Detail of the user who has submitted the vendor credit.

SubmittedDate Date True

Date when vendor credit was submitted.

SubmitterId String True

Users.UserId

Id of vendor credit submitter.

TaxTreatment String False

VAT treatment for the Vendor Credit.

TemplateId String True

Id of a template.

TemplateName String True

Name of a template.

TemplateType String True

Type of a template.

Total Decimal True

Total of vendor credits.

TotalCreditsUsed Decimal True

Total credits used for this vendor credit.

TotalRefundedAmount Decimal True

Total amount refunded for a vendor credit.

PlaceOfSupply String False

The place of supply is where a transaction is considered to have occurred for VAT purposes.

VatTreatment String False

VAT treatment for the vendor credit.

LineItems String False

Line items of an estimate.

BillingAddress String True

Billing address of vendor credit.

BillingAddressAttention String True

Name of a person in billing address for the vendor credit.

BillingAddressCity String True

City of a billing address for the vendor credit.

BillingAddressCountry String True

Country of a billing address for the vendor credit.

BillingAddressFax String True

Fax of a billing address for the vendor credit.

BillingAddressPhone String True

Phone of a billing address for the vendor credit.

BillingAddressState String True

State of a billing address for the vendor credit.

BillingAddressStreet2 String True

Street two of a billing address for the vendor credit.

BillingAddressZip String True

Zip of a billing address for the vendor credit.

BillingAddressId Long True

Id of the Billing Address for the vendor credit.

DiscountAccountName String True

Name of the account used for discount in this vendor credit.

DiscountType String True

Type of discount applied.

SubStatuses String True

List of sub-statuses for the vendor credit, in JSON format.

SubjectContent String True

Content for the subject of the vendor credit.

SubmittedByEmail String True

Email of the user who has submitted the vendor credit.

SubmittedByName String True

Name of the user who has submitted the vendor credit.

SubmittedByPhotoUrl String True

Photo URL of the user who submitted the vendor credit.

TaxOverridePreference String True

Preference setting for tax override on the vendor credit.

TaxRounding String True

Tax rounding method applied to the vendor credit.

Taxes String True

Taxes, in JSON format.

TdsCalculationType String True

Calculation type for TDS.

TdsOverridePreference String True

Override preference for TDS on this vendor credit.

TdsSummary String True

Summary of TDS applied, in JSON format.

VendorCreditRefunds String True

Refunds for the vendor credit.

IgnoreAutoNumberGeneration String True

Ignore auto number generation for this vendor credit only. On enabling this option vendor credit number is mandatory.

CData Python Connector for Zoho Books

VendorCreditRefund

Read, Insert and Update Vendor Credit Refunds.

g

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following column and operator:

  • VendorCreditId supports the '=' comparison.

The rest of the filter is executed client-side within the connector.

For example, the following queries are processed server-side:

SELECT * FROM VendorCreditRefund WHERE VendorCreditId = '3350895000000089001'

SELECT * FROM VendorCreditRefund WHERE VendorCreditId = '3285934000000134009' AND VendorCreditRefundId = '3285934000000435001'

Insert

INSERT can be executed by specifying the Amount, Date, AccountId, and VendorCreditId columns. The columns that are not read-only can be inserted optionally. The following is an example of how to insert into this table.

INSERT INTO VendorCreditRefund (Date, Amount, AccountId, VendorCreditId) VALUES ('2023-02-27', '1200', 3285934000000259036, 3285934000000134009)

Update

UPDATE can be executed by specifying the Amount, Date and AccountId in the WHERE Clause. The columns that are not read-only can be updated. For example:

UPDATE VendorCreditRefund SET Description = 'test2' WHERE vendorcreditrefundid = 3285934000000435001 AND VendorCreditId = 3285934000000134009

Delete

DELETE can be executed by specifying the Id in the WHERE Clause For example:

DELETE FROM VendorCreditRefund WHERE VendorCreditId = 3285934000000134009 AND vendorcreditrefundid = 3285934000000432043

Columns

Name Type ReadOnly References SupportedOperators Description
VendorCreditId [KEY] String False

VendorCredits.VendorCreditId

=

Vendor Credit Id

VendorCreditRefundId [KEY] String True =

Vendor Credit Refund Id

Amount Integer False

Amount

AmountBcy Integer True

Amount BCY

AmountFcy Integer True

Amount FCY

CustomerName String True

Customer Name

Date Date False

Date

Description String False

Description

ExchangeRate Decimal False

Exchange Rate

ReferenceNumber String False

Reference Number

RefundMode String False

Refund Mode

VendorName String True

Vendor Name

VendorCreditNumber String True

Vendor Credit Number

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
AccountId String

Id of the Bank Account.

CData Python Connector for Zoho Books

VendorPaymentDetails

To list, add, update and delete details of a Vendor Payment.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following column and operator:

  • PaymentId supports the '=' and IN operators.

NOTE: PaymentId is required to query VendorPaymentDetails.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM VendorPaymentDetails WHERE PaymentId = '1894553000000085277'
	SELECT * FROM VendorPaymentDetails WHERE PaymentId IN (SELECT PaymentId FROM VendorPayments)
	SELECT * FROM VendorPaymentDetails WHERE PaymentId IN ('1894553000000085277','1894553000000085278')

Insert

INSERT can be executed by specifying the VendorId and Amount columns. The columns that are not read-only can be inserted optionally. The following is an example of how to insert into this table.

INSERT INTO VendorPaymentDetails (VendorId, Amount) VALUES ('3285934000000104023', '500')

Update

UPDATE can be executed by specifying the PaymentId in the WHERE Clause. The columns that are not read-only can be updated. For example:

UPDATE VendorPaymentDetails SET VendorId = '3285934000000104023', Amount = '1000' WHERE PaymentId = '3350895000000089005'

Delete

DELETE can be executed by specifying the PaymentId in the WHERE Clause For example:

DELETE FROM VendorPaymentDetails WHERE PaymentId = '3350895000000089001'

Columns

Name Type ReadOnly References SupportedOperators Description
PaymentId [KEY] String True

VendorPayments.PaymentId

Id of a payment.

VendorId String False

VendorPayments.VendorId

Id of the vendor the vendor payment has been made.

VendorName String True

Name of the vendor the vendor payment has been made.

VendorpaymentRefunds String True

Refunds of a vendor payment.

AchPaymentStatus String True

Status of ACH Payment.

Amount Decimal False

Amount of the vendor payments.

ApproverId String True

Users.UserId

Id of an approver.

ApproversList String True

List of Id of an approver.

Balance Decimal True

Total amount of a vendor payment.

Bills String False

Individual bill payment details as array.

BillingAddress String True

Billing address of a vendor payment.

BillingAddressAttention String True

Name of a person in billing address.

BillingAddressCity String True

City of a billing address.

BillingAddressCountry String True

Country of a billing address.

BillingAddressFax String True

Fax of a billing address.

BillingAddressPhone String True

Phone number of a billing address.

BillingAddressState String True

State of a billing address.

BillingAddressStreet2 String True

Street two of a billing address.

BillingAddressZip String True

ZIP code of a billing address.

CheckDetailsAmountInWords String False

Checking details with amount in words.

CheckDetailsCheckId String False

Id of check.

CheckDetailsCheckNumber String False

Number if check.

CheckDetailsCheckStatus String False

Status of check.

CheckDetailsMemo String False

Memo of check details.

CheckDetailsTemplateId String False

Template Id of a vendor payment in check.

Comments String True

Comments.

CreatedTime Datetime True

Time at which the vendor payment was created.

CreditAccountId String True

CreditAccountId.

CurrencyCode String True

CurrencyCode.

CurrencyId String True

Currencies.CurrencyId

Currency Id of the customer's currency.

CurrencySymbol String True

Currency symbol of the customer's currency.

CustomFields String False

Custom Fields.

Date Date False

Date of a vendor payment.

Description String False

Description of the vendor payment.

Documents String True

Documents.

ExchangeRate Decimal False

Exchange rate of a vendor payment.

ImportedTransactions String True

Imported bank transations.

IsAchPayment Boolean True

Check if the payment if done with ACH payment.

IsPaidViaPrintCheck Boolean False

Check if vendor payment paid via print check.

IsPreGst Boolean True

Check if vendor payment includes pre GST.

IsTdsAmountInPercent Boolean True

Check if the TDS amount is in percent.

IsAdvancePayment Boolean True

IsAdvancePayment.

IsOnlinePayment Boolean True

IsOnlinePayment.

LastModifiedTime Datetime True

The time of last modification of the vendor payment.

OffsetAccountId String True

BankAccounts.AccountId

Id of an offset account.

OffsetAccountName String True

Name of an offset account.

PaidThroughAccountId String False

BankAccounts.AccountId

Account Id from which vendor payment has been made.

PaidThroughAccountName String True

Account name from which vendor payment has been made.

PaidThroughAccountType String True

Account type from which vendor payment has been made.

PaymentMode String False

Mode through which payment is made.

PaymentNumber String True

Number through which payment is made.

ProductDescription String True

Description of the product.

PurposeCode String True

Purpose code of vendor payment.

ReferenceNumber String False

Reference number of a vendor payment.

SubmittedBy String True

SubmittedBy.

SubmittedByEmail String True

SubmittedByEmail.

SubmittedByName String True

SubmittedByName.

SubmittedDate Date True

SubmittedDate.

Status String True

Status.

TaxAccountId String True

BankAccounts.AccountId

Id of a tax account.

TaxAccountName String True

Name of a tax account.

TaxAmountWithheld Decimal True

Amount withheld for tax.

TdsTaxId String True

Id of a TDS tax.

CreatedById String True

Id of the vendor who made the payment.

CreatedByName String True

Name of the vendor who made the payment.

IndirectTcsTaxAmount Decimal True

Indirect TCS tax amount.

IndirectTcsTaxDetails String True

Details of indirect TCS tax.

IndirectTcsTaxId String True

ID of indirect TCS tax.

IndirectTdsTaxAmount Decimal True

Indirect TDS tax amount.

IndirectTdsTaxDetails String True

Details of indirect TDS tax.

IndirectTdsTaxId String True

ID of indirect TDS tax.

PaymentNumberPrefix String True

Prefix of the payment number.

PaymentNumberSuffix String True

Suffix of the payment number.

SubmittedByPhotoUrl String True

URL of the submitter's photo.

SubmitterId String True

ID of the person who submitted the payment.

TdsCalculationType String True

Type of TDS calculation.

TdsOverridePreference String True

TDS override preference setting.

TdsSummary String True

Summary of TDS details.

TotalPaymentAmount Decimal True

Total amount of the payment.

TransferType String True

Type of payment transfer.

Notes String True

Notes for the vendor payment.

BillId String True

Bills.BillId

ID of the associated bill.

CData Python Connector for Zoho Books

VendorPaymentsRefund

Read, Insert and Update Vendor Credit Refunds.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • VendorPaymentId supports the '=' comparison.
  • VendorPaymentRefundId supports the '=' comparison.

The rest of the filter is executed client-side within the connector.

For example, the following queries are processed server-side:

SELECT * FROM VendorPaymentsRefund WHERE VendorPaymentId = '3285934000000429001'

SELECT * FROM VendorPaymentsRefund WHERE VendorPaymentRefundId = '3285934000000429017'

Insert

INSERT can be executed by specifying the Amount, Date, ToAccountId, and VendorCreditId columns. The columns that are not read-only can be inserted optionally. The following is an example of how to insert into this table.

INSERT INTO VendorPaymentsRefund (Date, Amount, ToAccountId, VendorPaymentId) VALUES ('2023-02-27', '1200', 3285934000000259036, 3285934000000429001)

Update

UPDATE can be executed by specifying the Amount, Date and AccountId columns in the WHERE Clause. The columns that are not read-only can be updated. For example:

UPDATE VendorPaymentsRefund SET Description = 'test2' WHERE vendorpaymentrefundid = 3285934000000437017 AND VendorPaymentId = 3285934000000429001

Delete

DELETE can be executed by specifying the Id in the WHERE Clause For example:

DELETE FROM VendorPaymentsRefund WHERE VendorPaymentId = 3285934000000429001 AND vendorpaymentrefundid = 3285934000000437017

Columns

Name Type ReadOnly References SupportedOperators Description
VendorPaymentId [KEY] String False

Vendor Payment Id

VendorPaymentRefundId [KEY] String True

Vendor Payment Refund Id

ToAccountId String False

To Account Id

ToAccountName String True

To Account Name

Amount Integer False

Amount

AmountBcy Integer True

Amount BCY

AmountFcy Integer True

Amount FCY

CustomFields String True

Custom Fields

CustomerName String True

Customer Name

Date Date False

Date

Description String False

Description

ReferenceNumber String False

Reference Number

RefundMode String False

Refund Mode

CData Python Connector for Zoho Books

Views

Views are similar to tables in the way that data is represented; however, views are read-only.

Queries can be executed against a view as if it were a normal table.

CData Python Connector for Zoho Books Views

Name Description
AccountDetailsBaseCurrencyAdjustment Retrieves details of Base Currency Adjustment.
AccountDetailsBaseCurrencyAdjustmentAccounts Retrieves account details of Base Currency Adjustment
accounttransactionsreport Generated schema file.
BalanceSheetsReport This report summarizes your company's assets, liabilities and equity at a specific point in time
BankAccountLastImportedStatement Retrieves the details of previously imported statement for the account.
BankAccountLastImportedStatementTransactions Retrieves the details of transaction related to previously imported statement for the account.
BankMatchingTransactions Retrieves the list of transactions which includes invoices/bills/credit-notes.
BankRuleCriterions Get criterions of a specific bank rule.
BankTransactionImportedTransaction Retrieves Imported Transactions.
BankTransactionLineItems Get details of bank transaction line items.
BaseCurrencyAdjustmentAccounts Retrieves lists of base currency adjustment accounts.
BillDocuments Get the attachments associated with bills.
BillLineItems Get the details of a line items of bills.
BillPayments Get the list of payments made for a bill.
BillPurchaseOrders Retrieves bills related to purchase order.
Bills Retrieves list of bills.
BillVendorCredits Retrieves bills related to vendor credits.
Budgets To get the list of budgets
BusinessPerformanceRatiosReport Generated schema file.
cashflowreport Generated schema file.
ChartOfAccountInlineTransactions Retrieves the list of inline transactions.
ChartOfAccountTransactions Retrieves list of all involved transactions for the given account.
committedstockdetailsreport Generated schema file.
ContactAddresses Get addresses of a contact including its Shipping Address, Billing Address.
ContactDocuments Get the attachments associated with contacts.
ContactRefunds Retrieves refund details related to a contact.
Contacts Retrieves list of all contacts.
CreditNoteDocuments Get the attachments associated with credit notes.
CreditNoteInvoices Retrieves details of invoices from an existing Credit Note.
CreditNoteLineItems Retrieves details of line items from existing Credit Notes.
CreditNotes Retrieves list of all the Credit Notes.
CreditNoteTemplates Get all credit note pdf templates.
CurrencyExchangeRates Retrieves list of exchange rates configured for the currency.
customerbalancesreport Generated schema file.
CustomerPaymentInvoices Retrieves invoices related to customer payments.
CustomerPayments Retrieves list of all the payments made by your customer.
CustomModuleFieldDropDownOptions In Zoho Books, you can create a custom module to record other data when the predefined modules are not sufficient to manage all your business requirements.
Documents Get the list of all the documents associated with any entity.
Employees Retrieves list of employees. Also, get the details of an employee.
EstimateApprovers Get the details of approvers for estimates.
EstimateLineItems Get the details of line items for estimates.
Estimates Retrieves list of all estimates.
EstimateTemplates Get all estimate pdf templates.
Expenses Retrieves list of all the Expenses.
GeneralLedgerReport Generated schema file.
GetContactStatementEmailContent Retrieves the content of the mail sent to a contact.
InventorySummaryReport Generated schema file.
InventoryValuationReport Generated schema file.
InvoiceAppliedCredits Retrieves list of credits applied for an invoice.
InvoiceDocuments Get the attachments associated with invoices.
InvoiceLineItems Get the details of line items from invoices.
InvoicePayments Get the list of payments made for an invoice.
Invoices Retrieves list of all invoices.
InvoiceTemplates Get all invoice pdf templates.
Items Retrieves list of all active items.
ItemWarehouses Retrieves warehouse details related to items.
JournalLineItems Retrieves list of line items of a journal.
JournalReport Generated schema file.
MovementOfEquityReport Generated schema file.
OpeningBalanceAccounts Retrieves list of accounts of opening balance.
OpeningBalanceTransactionSummaries Get transaction summaries of opening balance.
Organizations Retrieves list of organizations.
PaymentsReceivedReport Generated schema file.
ProductSalesReport Generated schema file.
ProfitsAndLossesReport This report summarizes your company's assets, liabilities and equity at a specific point in time
ProjectInvoices Retrieves list of invoices created for a project.
ProjectPerformanceSummaryReport Generated schema file.
ProjectUsers Retrieves list of users associated with a project. Also, get details of a user in project.
PurchaseOrderDocuments Get the attachments associated with Purchase Orders.
PurchaseOrderLineItems Get the details of line items of purchase orders.
PurchaseOrders Retrieves list of all purchase orders.
PurchaseOrdersByVendorReport Generated schema file.
PurchaseOrderTemplates Get all purchase order pdf templates.
RecurringBillLineItems Get the details of a line items of bills.
RecurringBills To list, add, update and delete details of a bill.
RecurringExpenses Retrieves list of all the Expenses.
RecurringInvoiceLineItems Get the details of line items of a recurring invoice.
RecurringInvoices Retrieves list of all recurring invoices.
RecurringSubExpense Retrieves list of child expenses created from recurring expense.
ReportsAccountTransactionsDetails Retrieves the list of inline transactions.
RetainerInvoiceDocuments Get the attachments associated with retainer invoices.
RetainerInvoiceLineItems Retrieves detail of line items of retainer invoices.
RetainerInvoicePayments Get the list of payments made for a retainer invoices.
RetainerInvoices Retrieves list of all retainer invoices.
RolePermissions Get the permissions associated with a role.
RoleReportPermissions Get the report permissions associated with a role.
Roles Get all roles in an organization.
SalesByCustomerReport Generated schema file.
SalesByItemReport Generated schema file.
SalesBySalespersonReport Generated schema file.
SalesorderDocuments Get the attachments associated with salesorders.
SalesOrderLineItems Retrieves list of line items of a sales order.
SalesOrders Retrieves list of all sales orders.
SalesOrderTemplates Get all sales order pdf templates.
StockSummaryReport Generated schema file.
TaxSummaryReport This report summarizes your company's assets, liabilities and equity at a specific point in time
TrialBalanceReport This report summarizes your company's assets, liabilities and equity at a specific point in time
VendorBalancesReport Generated schema file.
VendorCreditBills Retrieves list of bills to which the vendor credit is applied.
VendorCreditLineItems Retrieves list of line items from vendor credits.
VendorCredits Retrieves list of vendor credits.
VendorPaymentBills Retrieves bills related to vendor payments.
VendorPayments Retrieves list of all the payments made to your vendor.

CData Python Connector for Zoho Books

AccountDetailsBaseCurrencyAdjustment

Retrieves details of Base Currency Adjustment.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • CurrencyId supports the '=' comparison.
  • AdjustmentDate supports the '=' comparison.
  • ExchangeRate supports the '=' comparison.
  • Notes supports the '=' comparison.

NOTE: CurrencyId, AdjustmentDate, ExchangeRate, Notes are required to query AccountDetailsBaseCurrencyAdjustment.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM AccountDetailsBaseCurrencyAdjustment WHERE AdjustmentDate = '2023-03-16' AND CurrencyId = 3255827000000000097 AND ExchangeRate = '80.6719' AND Notes = 'adjustment'
	

Columns

Name Type References SupportedOperators Description
Accounts String The Accounts
CurrencyCode String The Currency Code
AdjustmentDate Date = The Adjustment Date
CurrencyId String

Currencies.CurrencyId

= The Currency Id of the customer's currency.
ExchangeRate Decimal = The Exchange rate of the currency.
Notes String = Notes for base currency adjustment

CData Python Connector for Zoho Books

AccountDetailsBaseCurrencyAdjustmentAccounts

Retrieves account details of Base Currency Adjustment

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • CurrencyId supports the '=' comparison.
  • AdjustmentDate supports the '=' comparison.
  • ExchangeRate supports the '=' comparison.
  • Notes supports the '=' comparison.

NOTE: CurrencyId, AdjustmentDate, ExchangeRate, Notes are required to query AccountDetailsBaseCurrencyAdjustmentAccounts.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM AccountDetailsBaseCurrencyAdjustmentAccounts WHERE AdjustmentDate = '2023-03-16' AND CurrencyId = 3255827000000000097 AND ExchangeRate = '80.6719' AND Notes = 'adjustment'
	

Columns

Name Type References SupportedOperators Description
AccountId String

BankAccounts.AccountId

The Id of the Bank/Credit Card account
AccountName String The Account Name
AdjustedBalance Decimal The Adjusted Balance
BCYBalance Decimal The Balance in Base Currency
FCYBalance Integer The Balance in Foreign Currency
GAINORLOSS Integer The Gain Or Loss
GLSpecificType Integer The GL Specific Type
AdjustmentDate Date = The Adjustment Date
CurrencyId String

Currencies.CurrencyId

= The Currency Id
ExchangeRate Decimal = The Exchange Rate
Notes String = Notes

CData Python Connector for Zoho Books

accounttransactionsreport

Generated schema file.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • TransactionDate supports the '=' comparison.
  • ToDate supports the '=' comparison.
  • FromDate supports the '=' comparison.
  • CashBased supports the '=' comparison.
  • AccountTransactionsTransactionType supports the 'IN', 'NOT IN' comparisons.
  • AccountTransactionsAccountId supports the 'IN' comparison.
  • AccountTransactionsContactId supports the 'IN', 'NOT IN' comparisons.
  • AccountTransactionsProjectIds supports the 'IN', 'IS NULL', 'IS NOT NULL' comparisons.
  • AccountTransactionsAccountAccountType supports the '=', '!=' comparisons.
  • AccountTransactionsAccountAccountGroup supports the '=', '!=' comparisons.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM accounttransactionsreport WHERE TransactionDate = 'Today'

    SELECT * FROM accounttransactionsreport WHERE ToDate = '2022-10-31'

    SELECT * FROM accounttransactionsreport WHERE FromDate = '2022-10-10' AND ToDate = '2022-10-31'

    SELECT * FROM accounttransactionsreport WHERE CashBased = True
	
    SELECT * FROM accounttransactionsreport WHERE AccountTransactionsTransactionType NOT IN ('Invoices', 'Bills')
	
    SELECT * FROM accounttransactionsreport WHERE AccountTransactionsAccountId IN ('3285934000000000373')
	
    SELECT * FROM accounttransactionsreport WHERE AccountTransactionsProjectIds IS NULL
	
    SELECT * FROM accounttransactionsreport WHERE AccountTransactionsAccountAccountType = 'Asset'
	
    SELECT * FROM accounttransactionsreport WHERE AccountTransactionsAccountAccountGroup != 'Liability'

Columns

Name Type References SupportedOperators Description
AccountTransactionsAccountAccountCode String Account Transactions Account Account Code
AccountTransactionsAccountName String Account Transactions Account Name
AccountTransactionsContactName String Account Transactions Contact Name
AccountTransactionsDescription String Account Transactions Description
AccountTransactionsCredit Double Account Transactions Credit
AccountTransactionsCurrencyCode String Account Transactions Currency Code
AccountTransactionsDate Date Account Transaction sDate
AccountTransactionsDebit Decimal Account Transactions Debit
AccountTransactionsEntityNumber String Account Transactions Entity Number
AccountTransactionsNetAmount String Account Transactions Net Amount
AccountTransactionsOffsetAccountId String Account Transactions Offset Account Id
AccountTransactionsOffsetAccountType String Account Transactions Offset Account Type
AccountTransactionsReferenceNumber String Account Transactions Reference Number
AccountTransactionsReferenceTransactionId String Account Transactions Reference transaction Id
AccountTransactionsReportingTag String Account Transactions Reporting Tag
AccountTransactionsTransactionDetails String Account Transactions Transaction Details
AccountTransactionsTransactionId String Account Transactions Transaction Id
AccountTransactionsFCYCredit String Account Transactions FCY Credit
AccountTransactionsFcyDebit String Account Transactions Fcy Debit
AccountTransactionsFcyNetAmount String Account Transactions Fcy Net Amount
OpeningBalanceAccountCreditBalance Integer Opening Balance Account Credit Balance
OpeningBalanceCredit String Opening Balance Credit
OpeningBalanceDate String Opening Balance Date
OpeningBalanceDebit String Opening Balance Debit
OpeningBalanceFCYCredit String Opening Balance FCY Credit
OpeningBalanceFcyDebit String Opening Balance Fcy Debit
OpeningBalanceName String Opening Balance Name
ClosingBalanceCredit String Closing Balance Credit
ClosingBalanceDate String Closing Balance Date
ClosingBalanceDebit String Closing Balance Debit
ClosingBalanceFcyCredit String Closing Balance Fcy Credit
ClosingBalanceFcyDebit String Closing Balance Fcy Debit
ClosingBalanceName String Closing Balance Name
AccountTransactionsAccountAccountGroup String =, != Account Transactions Account Account Group

The allowed values are Asset, OtherAsset, OtherCurrentAsset, Bank, Cash, FixedAsset, Liability, OtherCurrentLiability, CreditCard, LongTermLiablity, OtherLiability, Equity, Income, OtherIncome, Expense, CostOfGoodsSold, OtherExpense, AccountsReceivable, AccountsPayable, Stock, PaymentClearingAccount, PrepaidCard, OverseasTaxPayable, OutputTax, InputTax.

AccountTransactionsAccountAccountType String =, != Account Transactions AccountAccount Type

The allowed values are Asset, OtherAsset, OtherCurrentAsset, Bank, Cash, FixedAsset, Liability, OtherCurrentLiability, CreditCard, LongTermLiablity, OtherLiability, Equity, Income, OtherIncome, Expense, CostOfGoodsSold, OtherExpense, AccountsReceivable, AccountsPayable, Stock, PaymentClearingAccount, PrepaidCard, OverseasTaxPayable, OutputTax, InputTax.

AccountTransactionsTransactionType String IN, NOT IN AccountTransactions transaction Type

The allowed values are Invoices, Bills, PaymentsMade, CreditNote, CreditNotesRefund, VendorCredits, VendorCreditsRefund, Expense, Journal, BaseCurrencyAdjustment, DebitNote, CustomerPayment, VendorPayment, PaymentRefund, RetainerPayment, InventoryAdjustmentByQuantity, InventoryAdjustmentByValue, TransferOrderTo, TransferOrderFrom, SalesWithoutInvoices, ExpenseRefund, EmployeeReimbursement.

AccountTransactionsProjectIds String IN, IS NULL, IS NOT NULL Account Transactions Project Ids
AccountTransactionsContactId String IN, NOT IN Account Transactions Contact Id
AccountTransactionsAccountId String IN Account Transactions Account Id

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
CashBased Boolean Cash Based
TransactionDate String Filter transaction by any transaction date.

The allowed values are Today, ThisWeek, ThisMonth, ThisQuarter, ThisYear, PreviousDay, PreviousWeek, PreviousMonth, PreviousQuarter, PreviousYear, CustomDate.

ToDate Date To Date
FromDate Date From Date

CData Python Connector for Zoho Books

BalanceSheetsReport

This report summarizes your company's assets, liabilities and equity at a specific point in time

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • TransactionDate supports the '=' comparison.
  • ToDate supports the '=' comparison.
  • FromDate supports the '=' comparison.
  • CashBased supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM BalanceSheetsReport WHERE TransactionDate = 'Today'

    SELECT * FROM BalanceSheetsReport WHERE ToDate = '2022-10-31'

    SELECT * FROM BalanceSheetsReport WHERE FromDate = '2022-10-10' AND ToDate = '2022-10-31'

    SELECT * FROM BalanceSheetsReport WHERE CashBased = True

Columns

Name Type References SupportedOperators Description
BalanceTypeName String Balance Type Name
SubBalanceTypeName String SubBalance Type Name
AccountTransactionTypeName String Account Transaction Type Name
SubAccountTransactionTypeName String Sub Account Transaction Type Name
AccountTransactionTotal Decimal Account Transaction Total
SubAccountTransactionTotal Decimal Sub Account Transaction Total
SubBalanceTypeTotal Decimal SubBalance Type Total
BalanceTypeTotal Decimal Balance Type Total

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
CashBased Boolean Balance Type Total
TransactionDate String Filter transaction by any transaction date.

The allowed values are Today, ThisWeek, ThisMonth, ThisQuarter, ThisYear, PreviousDay, PreviousWeek, PreviousMonth, PreviousQuarter, PreviousYear, CustomDate.

ToDate Date To Date
FromDate Date From Date

CData Python Connector for Zoho Books

BankAccountLastImportedStatement

Retrieves the details of previously imported statement for the account.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the AccountId column, which supports '=,IN' comparisons.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM BankAccountLastImportedStatement WHERE accountid = '3255827000000101306'

    SELECT * FROM BankAccountLastImportedStatement WHERE accountid IN ('3255827000000101306', '3255827000000101223')

Columns

Name Type References SupportedOperators Description
StatementId [KEY] Long The Statement Id
AccountId String

BankAccounts.AccountId

= The Id of the Bank/Credit Card account
FromDate Date The From Date
Source String Source
ToDate Date The To Date
Transactions String Transactions

CData Python Connector for Zoho Books

BankAccountLastImportedStatementTransactions

Retrieves the details of transaction related to previously imported statement for the account.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with AccountId column, which supports '=,IN' comparisons.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM BankAccountLastImportedStatementTransactions WHERE accountid = '3255827000000101306'

    SELECT * FROM BankAccountLastImportedStatementTransactions WHERE accountid IN ('3255827000000101306', '3255827000000101223')

Columns

Name Type References SupportedOperators Description
TransactionId [KEY] Long The Transaction Id
AccountId String

BankAccounts.AccountId

= The Id of the Bank/Credit Card account
TransactionType String The Transaction Type
Status String Status
ReferenceNumber String A Reference Number
Payee String The Payee involved in the transaction
DebitOrCredit String Indicates if transaction is Debit or Credit
Date Date The Date of the transaction
CustomerId Long The Customer Id
Amount Integer The Amount involved in the transaction

CData Python Connector for Zoho Books

BankMatchingTransactions

Retrieves the list of transactions which includes invoices/bills/credit-notes.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • TransactionId supports the '=' comparison.
  • TransactionType supports the '=' comparison.
  • ReferenceNumber supports the '=' comparison.
  • Date supports the '=,<,>' comparisons.
  • Contact supports the '=' comparison.
  • ShowAllTransactions. supports the '=' comparison.

You can also provide criteria to search for matching uncategorized transactions.

The rest of the filter is executed client-side in the connector. For example:

    SELECT * FROM BankMatchingTransactions WHERE TransactionId = '1894578000000087001

Columns

Name Type References SupportedOperators Description
TransactionId [KEY] String

BankTransactions.TransactionId

Id of the Transaction.
TransactionNumber String Numnber of transaction.
TransactionType String Transaction Type of the transaction.
Amount Integer Amount of the bank matching transactions.
ContactName String Display Name of the contact. Max-length [200]
Date Date =,<,> Date when transaction was made.
DebitOrCredit String Indicates if transaction is Credit or Debit.
IsBestMatch Boolean Check if the transaction is a best match.
IsPaidViaPrintCheck Boolean Check if it is paid via print check.
ReferenceNumber String Reference Number of the transaction.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
Contact String Contact person name, involved in the transaction.
ShowAllTransactions Boolean Check if all transactions must be shown.

CData Python Connector for Zoho Books

BankRuleCriterions

Get criterions of a specific bank rule.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • RuleAccountId supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM BankRuleCriterions WHERE RuleAccountId = '1894553000000085382

Columns

Name Type References SupportedOperators Description
CriteriaId [KEY] String Id of a criteria.
RuleAccountId String

BankAccounts.AccountId

Id of the Bank Account.
Comparator String Operator for comparing criteria.
Field String Field of a criteria.
Value String Value of a criteria.

CData Python Connector for Zoho Books

BankTransactionImportedTransaction

Retrieves Imported Transactions.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the TransactionId column, which supports '=,IN' comparisons.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM BankTransactionImportedTransaction WHERE transactionid = '3255827000000101458'

    SELECT * FROM BankTransactionImportedTransaction WHERE transactionid IN ('3255827000000101458', '3255827000000102354')

Columns

Name Type References SupportedOperators Description
ImportedTransactionId [KEY] Long The Imported Transaction Id
TransactionId String

BankTransactions.TransactionId

= The Transaction Id
AccountId String

BankAccounts.AccountId

The Id of the Bank/Credit Card account
Amount Integer Amount
Date Date The Date of the transaction
Description String Description
Payee String The Payee involved in the transaction
ReferenceNumber String A Reference Number
Status String Status

CData Python Connector for Zoho Books

BankTransactionLineItems

Get details of bank transaction line items.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following column and operator:

  • TransactionId supports the '=' and IN operators.

NOTE: TransactionId is required to query BankTransactionLineItems.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM BankTransactionLineItems WHERE TransactionId = '1894553000000098001'
	SELECT * FROM BankTransactionLineItems WHERE TransactionId IN (SELECT TransactionId FROM BankTransactions)
	SELECT * FROM BankTransactionLineItems WHERE TransactionId IN ('1894553000000098001','1894553000000098002')

Columns

Name Type References SupportedOperators Description
TransactionId [KEY] String

BankTransactions.TransactionId

Id of the Transaction.
BcyTotal Decimal Total Base Currency.
CustomerId String

Contacts.ContactId

Id of the customer or vendor.
CustomerName String Name of the customer or vendor.
FromAccountId String

BankAccounts.AccountId

Transaction from account Id.
FromAccountName String Transaction from account name.
PaymentMode String Mode through which payment is made.
SubTotal Decimal Sub total of bank transaction line items.
Tags String Details of tags related to bank transactions.
Total Decimal Total of bank transaction line items.
VendorId String Id of the vendor the bank transaction line items has been made.
VendorName String Name of the vendor the bank transaction line items has been made.

CData Python Connector for Zoho Books

BaseCurrencyAdjustmentAccounts

Retrieves lists of base currency adjustment accounts.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following column and operator:

  • BaseCurrencyAdjustmentId supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM BaseCurrencyAdjustmentAccounts WHERE BaseCurrencyAdjustmentId = '1894553000000000065'

Columns

Name Type References SupportedOperators Description
BaseCurrencyAdjustmentId [KEY] String Id of base currency adjustment account.
AccountId String

BankAccounts.AccountId

Id of the Bank Account.
AccountName String Name of the account.
BcyBalance Decimal Balance of Base Currency.
FcyBalance Decimal Balance of Foreign Currency.
AdjustedBalance Decimal Balance adjusted for base currency.
GainOrLoss Decimal Check the amount if gain or loss.
GlSpecificType String Specific type of gain or loss.

CData Python Connector for Zoho Books

BillDocuments

Get the attachments associated with bills.

Table Specific Information

Select

The connector will use the Zoho Books API to process WHERE clause conditions built with the following column and operator. The rest of the filter is executed client side within the connector.

  • BillId supports the '=,IN' comparisons.
For example:
    SELECT * FROM BillDocuments WHERE billid = '3255827000000101306'

    SELECT * FROM BillDocuments WHERE billid IN ('3255827000000101306', '3255827000000101223')

Columns

Name Type References SupportedOperators Description
DocumentId [KEY] String Id of Document.
BillId String

Bills.BillId

= Id of a bill.
FileName String Name of the document attached.
AttachmentOrder Integer Integer denoting the order of attachment.
CanSendInMail Boolean Boolean denoting if the document can be send in mail or not.
FileSize String Size of the file.
FileType String Type of the file.
Source String Source from where file was uploaded.
UploadedBy String The name of the contact who uploaded the file.
UploadedTime Datetime The date and time when file was uploaded.

CData Python Connector for Zoho Books

BillLineItems

Get the details of a line items of bills.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following column and operator:

  • BillId supports the the '=' and IN operators.

NOTE: BillId is required to query BillLineItems.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM BillLineItems WHERE BillId = '1894253000000085259'
	SELECT * FROM BillLineItems WHERE BillId IN (SELECT BillId FROM Bills)
	SELECT * FROM BillLineItems WHERE BillId IN ('1894553000000085259','1894553000000085260')

Columns

Name Type References SupportedOperators Description
LineItemId [KEY] String Id of line item.
BillId String

Bills.BillId

Id of a Bill.
AccountId String

BankAccounts.AccountId

Id of the Bank Account.
AccountName String Name of the account.
BcyRate Decimal Rate of Base Currency.
CustomFields String Custom fields
CustomerId String

Contacts.ContactId

Id of the customer or vendor.
CustomerName String Name of the customer or vendor.
Description String Description of the bill line item.
Discount Double Discount to be applied on the bill line item.
GstTreatmentCode String Treatment code of GST.
HasProductTypeMismatch Boolean Check if the product type is mismatch.
HsnOrSac String HSN Code.
ImageDocumentId String Id of the image document.
InvoiceId String

Invoices.InvoiceId

Id of an invoice.
InvoiceNumber String Number of an invoice.
IsBillable Boolean Check if the bill line items is billable.
ItcEligibility String Eligibility if bill for Input Tax Credit.
ItemId String

Items.ItemId

Id of an item.
ItemOrder Integer Order of an item.
ItemTotal Decimal Total items.
ItemType String Type of item.
Name String Name of the bill line item.
PricebookId String Id of pricebook.
ProductType String Type of product.
ProjectId String

Projects.ProjectId

Id of project.
ProjectName String Name of the project.
PurchaseorderItemId String Item Id for purchase order.
Quantity Decimal Quantity of line item.
Rate Decimal Rate of the line item.
ReverseChargeTaxId String Id of the reverse charge tax.
TaxExemptionCode String Code for tax exemption.
TaxExemptionId String

BankRules.TaxExemptionId

Id of tax exemption.
TaxId String

Taxes.TaxId

Id of tax.
TaxName String Name of tax.
TaxPercentage Integer Percentage applied for tax.
TaxType String Type of tax.
Unit String Number of quantity.
SKU String The SKU of the Line Item.

CData Python Connector for Zoho Books

BillPayments

Get the list of payments made for a bill.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following column and operator:

  • BillId supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM BillPayments WHERE BillId = '1894253000000085259'

Columns

Name Type References SupportedOperators Description
BillPaymentId [KEY] String Id of bill payment.
BillId String

Bills.BillId

Id of a Bill.
VendorId String Id of the vendor the bill payments has been made.
VendorName String Name of the vendor the bill payments has been made.
PaymentId String Id of a payment.
Amount Decimal Amount of the bill payments.
Date Date Date of a bill payment.
Description String Description of the bill payment.
ExchangeRate Decimal Exchange rate of bill payments.
IsSingleBillPayment Boolean Check if it is single bill payment.
PaidThrough String Amount paid via check/cash/credit.
PaymentMode String Mode through which payment is made.
ReferenceNumber String Reference number of bill payment.
TotalPaymentAmount Decimal Total amount of bill payment.

CData Python Connector for Zoho Books

BillPurchaseOrders

Retrieves bills related to purchase order.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the BillId column, which supports '=,IN' comparisons.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM BillPurchaseOrders WHERE billid = '3255827000000101212'

    SELECT * FROM BillPurchaseOrders WHERE billid IN ('3255827000000101212', '3255827000000102354')
	

Columns

Name Type References SupportedOperators Description
PurchaseOrderId String

PurchaseOrders.PurchaseorderId

The Purchase Order Id
BillId String

Bills.BillId

= The Bill Id
PurchaseOrderDate Date The Purchase Order Date
PurchaseOrderNumber String The Purchase Order Number
PurchaseOrderStatus String The Purchase Order Status
OrderStatus String The Order Status
ExpectedDeliveryDate Date The Expected Delivery Date

CData Python Connector for Zoho Books

Bills

Retrieves list of bills.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • BillNumber supports the '=' comparison.
  • Date supports the '=,<,>' comparisons.
  • LastModifiedTime supports the '=' comparison.
  • ReferenceNumber supports the '=' comparison.
  • Status supports the '=' comparison.
  • Total supports the '=,<,<=,>,>=' comparisons.
  • VendorId supports the '=' comparison.
  • VendorName supports the '=' comparison.
  • PurchaseOrderId supports the '=' comparison.
  • RecurringBillId supports the '=' comparison.
  • BillFilter supports the '=' comparison.
  • ItemId supports the '=' comparison.
  • ItemDescription. supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM Bills WHERE Total < 100 AND Total <= 98

    SELECT * FROM Bills WHERE Date < '2018-07-03'

    SELECT * FROM Bills WHERE CONTAINS (BillNumber, 'Bi')

Columns

Name Type References SupportedOperators Description
BillId [KEY] String Id of a bill.
BillNumber String Number of bill.
Balance Decimal Amount of bill.
CreatedTime Datetime Time at which the bill was created.
Date Date =,<,> Date of a bill.
DueDate Date Delivery date to pay the bill.
DueDays String Due days to pay the bill.
HasAttachment Boolean Check if the bill has attachment.
LastModifiedTime Datetime Last Modified Time of bill.
ReferenceNumber String Reference number of a bill.
Status String Status of a bill.

The allowed values are paid, open, overdue, void, partially_paid.

TdsTotal Decimal Total amount of TDS applied.
Total Decimal =,<,<=,>,>= Total of bills. Search by bill total.
VendorId String Id of the vendor the bill has been made. Search bills by Vendor Id.
VendorName String Name of the vendor the bill has been made. Search bills by vendor name.
AttachmentName String Name of an attachment.
ClientViewedTime Datetime Time when client viewed.
ColorCode String Color code.
CurrencyCode String Currency code of the customer's currency.
CurrencyId String

Currencies.CurrencyId

Currency Id of the customer's currency.
CurrentSubStatus String Current sub status of a bill.
CurrentSubStatusId String Current sub status Id of a bill.
EntityType String Entity type of the bill.
ExchangeRate Decimal Exchange rate of the currency.
IsBillReconciliationViolated Boolean Indicates if there is a violation in the bill reconciliation process
IsTallyBill Boolean Indicates if the bill was imported from Tally accounting software
IsUberBill Boolean Indicates if the bill is from Uber for Business integration
IsViewedByClient Boolean Check if bill is viewed by client.
PricePrecision Integer The precision for the price.
UnprocessedPaymentAmount Decimal Unprocessed payment amount.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
PurchaseOrderId String Id of a Purchase Order.
RecurringBillId String Id of a Recurring Bill.
BillFilter String Filter bills by any status.

The allowed values are Status.All, Status.PartiallyPaid, Status.Paid, Status.Overdue, Status.Void, Status.Open.

ItemId String Id of an Item.
ItemDescription String Description of a bill.

CData Python Connector for Zoho Books

BillVendorCredits

Retrieves bills related to vendor credits.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the BillId column, which supports '=,IN' comparisons.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM BillVendorCredits WHERE billid = '3255827000000099202'

    SELECT * FROM BillVendorCredits WHERE billid IN ('3255827000000099202', '3255827000000102354')
	

Columns

Name Type References SupportedOperators Description
VendorCreditBillId [KEY] Long The Vendor Credit Bill Id
VendorCreditId String

VendorCredits.VendorCreditId

The Id of a vendor credit.
BillId String

Bills.BillId

= The Bill Id
Amount Integer The Amount that is credited in the bill
Date Date The Date of the vendor credit.
VendorCreditNumber String The Number of a vendor credit.

CData Python Connector for Zoho Books

Budgets

To get the list of budgets

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • BudgetId supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM Budgets WHERE budgetid = 3255827000000081030

Columns

Name Type References SupportedOperators Description
BudgetId [KEY] String = Budget Id
BudgetStartDate Integer Budget Start Date
Year Integer Year
Frequency String Frequency
CustomFields String Custom Fields
TagOptionName Date Tag Option Name
ProjectName String Project Name
BudgetEndDate String Budget End Date
EntityType String Entity Type
BranchId String Branch Id
ProjectId String Project Id
BranchName String Branch Name
Name String Name
EntityTypeFormatted String Formatted display string for the entity type associated with the budget.
Frequency String Internal string representing the frequency setting.
LocationId String ID of the location associated with the budget.
LocationName String Name of the location associated with the budget.
TagId String ID of the tag associated with the budget category.
TagName String Name of the tag associated with the budget category.
TagOptionIndex Integer Index of the tag option for the budget category.
TagOptionId String ID of the tag option for the budget category.
YearFormatted String Formatted string displaying the budget year or period.

CData Python Connector for Zoho Books

BusinessPerformanceRatiosReport

Generated schema file.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • TransactionDate supports the '=' comparison.
  • ToMonth supports the '=' comparison.
  • FromMonth supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM businessperformanceratiosreport WHERE TransactionDate = 'PreviousQuarter'

    SELECT * FROM businessperformanceratiosreport WHERE TransactionDate = 'CustomDate' AND FromMonth = '2022-10' AND ToMonth = '2022-11'

Columns

Name Type References SupportedOperators Description
DashboardMonth String DashboardMonth
Denominator Integer Denominator
DiffLastQuarter Double DiffLastQuarter
DiffLastSixMonths Double DiffLastSixMonths
DiffLastTwelveMonths Double DiffLastTwelveMonths
DiffLastYear Double DiffLastYear
LastQuarter Integer LastQuarter
LastSixMonths Double LastSixMonths
LastTwelveMonths Double LastTwelveMonths
LastYear Double LastYear
Numerator Integer Numerator
PreLastQuarter Double PreLastQuarter
PreLastSixMonths Double PreLastSixMonths
PreLastTwelveMonths Double PreLastTwelveMonths
PreLastYear Double PreLastYear
PreviousValues String PreviousValues
Ratio Integer Ratio
RatioPrev Integer RatioPrev

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
TransactionDate String Filter transaction by any transaction date.

The allowed values are PreviousQuarter, PreviousYear, LastSixMonths, LastTwelveMonths, CustomDate.

ToMonth String To Months
FromMonth String From Month
UseState Boolean UseState

The default value is true.

CData Python Connector for Zoho Books

cashflowreport

Generated schema file.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • TransactionDate supports the '=' comparison.
  • ToDate supports the '=' comparison.
  • FromDate supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM cashflowreport WHERE TransactionDate = 'Today'

    SELECT * FROM cashflowreport WHERE ToDate = '2022-10-31'

    SELECT * FROM cashflowreport WHERE FromDate = '2022-10-10' AND ToDate = '2022-10-31'

Columns

Name Type References SupportedOperators Description
Label String Label
Name String Name
AccountName String Account Name
AccountCode String Account Code
AccountId String Account Id
LabelTotal String Label Total
Total String Total
AccountTotal String Account Total
NetTotalForName Double Net Total For Name

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
TransactionDate String Filter transaction by any transaction date.

The allowed values are Today, ThisWeek, ThisMonth, ThisQuarter, ThisYear, PreviousDay, PreviousWeek, PreviousMonth, PreviousQuarter, PreviousYear and CustomDate.

ToDate Date To Date
FromDate Date From Date

CData Python Connector for Zoho Books

ChartOfAccountInlineTransactions

Retrieves the list of inline transactions.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following column and operator:

  • ChartAccountId supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM ChartOfAccountInlineTransactions WHERE ChartAccountId = '1894553000000003003'

Columns

Name Type References SupportedOperators Description
ChartAccountId [KEY] String

BankAccounts.AccountId

Id of the Bank Account.
TransactionId [KEY] String

BankTransactions.TransactionId

Id of the Transaction.
Credit Decimal Credit of inline transaction.
CustomerId String

Contacts.ContactId

Id of the customer or vendor.
CustomerName String Name of the customer or vendor.
Date Date Date of an inline account transaction.
Debit String Debit of inline transaction.
EntityType String Entity type of inline transactions.
FcyCredit Decimal Foreign Currency credits.
FcyDebit String Foreign Currency debits.
ReferenceNumber String Reference number of inline transactions.

CData Python Connector for Zoho Books

ChartOfAccountTransactions

Retrieves list of all involved transactions for the given account.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • ChartAccountId supports the '=' comparison.
  • TransactionType supports the '=' comparison.
  • Date supports the '=,<,>' comparisons.
  • Amount supports the '=,<,<=,>,>=' comparisons.

You can also provide criteria to search for matching uncategorised transactions.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM ChartOfAccountTransactions WHERE ChartAccountId = '1894553000000003001' AND TransactionType = 'opening_balance'

Columns

Name Type References SupportedOperators Description
ChartAccountId String

ChartOfAccounts.ChartAccountId

Chart of Account Id.
CategorizedTransactionId [KEY] String Id of a categorized transaction in chart of account.
CreditAmount Decimal Total amount credited.
DebitAmount Decimal Total amount debited.
CurrencyCode String Currency code of the customer's currency.
CurrencyId String

Currencies.CurrencyId

Currency Id of the customer's currency.
CustomerId String

Contacts.ContactId

Id of the customer or vendor.
DebitOrCredit String Indicates if transaction is Credit or Debit.
Description String Description of the chart of account transactions.
EntryNumber String Entry number of account transaction.
Payee String Information about the payee.
TransactionDate Date Date of the transaction.
TransactionId String

BankTransactions.TransactionId

Id of the Transaction.
TransactionType String Type of transactions.

The allowed values are invoice, customer_payment, bills, vendor_payment, credit_notes, creditnote_refund, expense, card_payment, purchase_or_charges, journal, deposit, refund, transfer_fund, base_currency_adjustment, opening_balance, sales_without_invoices, expense_refund, tax_refund, receipt_from_initial_debtors, owner_contribution, interest_income, other_income, owner_drawings, payment_to_initial_creditors.

FcyDebitAmount Decimal Foreign currency amount debited.
FcyCreditAmount Decimal Foreign currency amount credited.
TransactionTypeFormatted String Formatted display name of the transaction type.
OffsetAccountName String Name of the offset account.
ReferenceNumber String Reference number of the transaction.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
Date Date Date range filter of Chart of Account.
Amount Decimal Amount of the transaction.

CData Python Connector for Zoho Books

committedstockdetailsreport

Generated schema file.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • TransactionDate supports the '=' comparison.
  • ToDate supports the '=' comparison.
  • FromDate supports the '=' comparison.
  • CustomerID supports the 'IN' comparison.
  • ItemName supports the '=, !=, LIKE, NOT LIKE, CONTAINS, IS NULL, IS NOT NULL' comparisons.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM committedstockdetailsreport WHERE TransactionDate = 'Today'

    SELECT * FROM committedstockdetailsreport WHERE ToDate = '2022-10-31'

    SELECT * FROM committedstockdetailsreport WHERE FromDate = '2022-10-10' AND ToDate = '2022-10-31'

    SELECT * FROM committedstockdetailsreport WHERE CustomerID IN ('3456743221369')

    SELECT * FROM committedstockdetailsreport WHERE ItemName IS NULL

Columns

Name Type References SupportedOperators Description
SalesOrderId String Sales OrderId
SalesOrderNumber String Sales OrderNumber
OrderType String Order Type
CustomerName String Customer Name
CommittedStock Double Committed Stock
IsSalesOrder Double Is SalesOrder
CreatedTime Datetime Created Time
Date Date Date
ItemUnit String Item Unit
ItemProductType String Item ProductType
ItemCreatedBy String Item CreatedBy
ItemStatus String Item Status
ItemDescription String Item Description
ItemPurchaseDescription String Item Purchase Description
ItemPurchaseRate String Item Purchase Rate
ItemItemType String Item ItemType
ItemRate String Item Rate
ItemLastModitfiedTime Datetime Item Last Moditfied Time
ItemCreatedTime Datetime Item Created Time
ContactCompanyName String Contact Company Name
ContactNotes String Contact Notes
ContactPaymentTerms String Contact Payment Terms
ContactOutstandingReceivableAmountBcy Integer Contact Outstanding Receivable Amount Bcy
ContactSkype String Contact Skype
ContactTwitter String Contact Twitter
ContactUnusedCreditsReceivableAmountBcy Integer Contact Unused Credits Receivable Amount Bcy
ContactMobilePhone String Contact Mobile Phone
ContactCreditLimit Integer Contact Credit Limit
ContactDepartment String Contact Department
ContactFirstName String Contact First Name
ContactEmail String Contact Email
ContactCreatedTime Datetime Contact Created Time
ContactOutstandingReceivableAmount Integer Contact Outstanding Receivable Amount
ContactWebsite String Contact Website
ContactLastModifiedTime Datetime Contact Last ModifiedTime
ContactCustomerSubType String Contact Customer SubType
ContactFacebook String Contact Facebook
ContactLastName String Contact LastName
ContactCreatedBy String Contact Created By
ContactPhone String Contact Phone
ContactDesignation String Contact Designation
ContactStatus String Contact Status
ItemName String =, !=, LIKE, NOT LIKE, CONTAINS, IS NULL, IS NOT NULL ItemName

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
TransactionDate String Filter transaction by any transaction date.

The allowed values are Today, ThisWeek, ThisMonth, ThisQuarter, ThisYear, PreviousDay, PreviousWeek, PreviousMonth, PreviousQuarter, PreviousYear, CustomDate.

ToDate Date To Date
FromDate Date From Date
CustomerId String Customer Id

CData Python Connector for Zoho Books

ContactAddresses

Get addresses of a contact including its Shipping Address, Billing Address.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following column and operator:

  • ContactId supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM ContactAddresses WHERE ContactId = '1894952000000071009'

Columns

Name Type References SupportedOperators Description
AddressId [KEY] String Id of an address.
ContactId String

Contacts.ContactId

Id of a contact.
Attention String Name of a person in billing address.
Address String Address of a contact.
Street2 String Street two of a billing address.
City String City of a billing address.
State String State of a billing address.
Zip String ZIP code of a billing address.
Country String Country of a billing address.
Phone String Phone number of a billing address.
Fax String Fax of a billing address.
CountryCode String Country Code of a billing address.
StateCode String State Code of a billing address.
County String County of a billing address.

CData Python Connector for Zoho Books

ContactDocuments

Get the attachments associated with contacts.

Table Specific Information

Select

The connector will use the Zoho Books API to process WHERE clause conditions built with the following column and operator. The rest of the filter is executed client side within the connector.

  • ContactId supports the '=,IN' comparisons.
For example:
    SELECT * FROM ContactDocuments WHERE contactid = '3255827000000101306'

    SELECT * FROM ContactDocuments WHERE contactid IN ('3255827000000101306', '3255827000000101223')

Columns

Name Type References SupportedOperators Description
DocumentId [KEY] String Id of Document.
ContactId String

Contacts.ContactId

= Id of a Contact.
FileName String Name of the document attached.
AttachmentOrder Integer Integer denoting the order of attachment.
CanShowInPortal Boolean Boolean denoting if the document should be shown in portal or not.
FileSize String Size of the file.
FileType String Type of the file.
Source String Source from where file was uploaded.
UploadedBy String The name of the contact who uploaded the file.
UploadedTime Datetime The date and time when file was uploaded.

CData Python Connector for Zoho Books

ContactRefunds

Retrieves refund details related to a contact.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the ContactId column, which supports '=,IN' comparisons.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM ContactRefunds WHERE contactid = '3255827000000093001'

    SELECT * FROM BankTransactionImportedTransaction WHERE transactionid IN ('3255827000000101458', '3255827000000102354')

Columns

Name Type References SupportedOperators Description
CreditNoteRefundId [KEY] Long The Credit Note Refund Id
CreditNoteId String

CreditNotes.CreditNoteId

The Credit Note Id
ContactId String

Contacts.ContactId

= The Contact Id
AmountBcy Double The Refund Amount in Base Currency
AmountFcy Double The Refund Amount in Foreign Currency
CreditNoteNumber String The Credit Note Number
CustomerName String The Customer Name
Date Date The Date of Refund
Description String Description
ReferenceNumber Integer A Reference Number
RefundMode String The Refund Mode

CData Python Connector for Zoho Books

Contacts

Retrieves list of all contacts.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • ContactName supports the '=' comparison.
  • CompanyName supports the '=' comparison.
  • Status supports the '=' comparison.
  • FirstName supports the '=' comparison.
  • LastName supports the '=' comparison.
  • Email supports the '=' comparison.
  • Phone supports the '=' comparison.
  • Address supports the '=' comparison.
  • PlaceOfContact supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM Contacts WHERE CONTAINS (LastName, 'D')

    SELECT * FROM Contacts WHERE FirstName = 'John' AND Status = 'Active'

    SELECT * FROM Contacts LIMIT 5

Columns

Name Type References SupportedOperators Description
ContactId [KEY] String Id of a Contact.
ContactName String Name of a Contact.
CustomerName String Name of the customer.
VendorName String Name of the Vendor.
CompanyName String Name of a Company.
Website String Website of this contact.
LanguageCode String Language of a contact.
ContactType String Contact type of the contact.
Status String Status of the contact.

The allowed values are All, Active, Inactive, Duplicate.

CustomerSubType String Sub type of a customer.
Source String Source of the contact.
CurrencyId String

Currencies.CurrencyId

Currency Id of the customer's currency.
Facebook String Facebook profile account.
CurrencyCode String Currency code of the customer's currency.
OutstandingReceivableAmount Decimal Outstanding receivable amount of a contact.
OutstandingReceivableAmountBcy Decimal Base Currency of Outstanding receivable amount of a contact.
OutstandingPayableAmount Decimal Outstanding payable amount of a contact.
OutstandingPayableAmountBcy Decimal Base Currency of Outstanding payable amount of a contact.
UnusedCreditsPayableAmount Decimal Unused credits payable amount of a contact.
FirstName String First name of the contact person.
LastName String Last name of the contact person.
Email String Email address of the contact person.
Phone String Phone number of the contact person.
Mobile String Mobile number of the contact person.
PlaceOfContact String Code for the place of contact.
AchSupported Boolean Check if ACH is supported.
CreatedTime Datetime Time at which the contact was created.
GSTTreatment String Choose whether the contact is GST registered/unregistered/consumer/overseas.
HasAttachment Boolean Check if contacts has attachment.
LastModifiedTime Datetime The time of last modification of the contact.
IsLinkedWithZohoCRM Boolean Indicate if the contact is linked with ZohoCRM ot not.
LanguageCodeFormatted String Language of a contact.
PanNumber String Pan Number of the contact.
PaymentTerms Integer Net payment term for the customer.
PaymentTermsLabel String Label for the paymet due details.
PortalStatus String Status of the contact on the portal
Twitter String Twitter profile account.
UnusedCreditsPayableAmount Decimal Unused credits payable amount of a contact.
UnusedCreditsPayableAmountBcy Decimal Base Currency of Unused credits payable amount of a contact.
UnusedCreditsReceivableAmount Decimal Unused credits receivable amount of a contact.
UnusedCreditsReceivableAmountBcy Decimal Base Currency of Unused credits receivable amount of a contact.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
Address String Address of a contact.

CData Python Connector for Zoho Books

CreditNoteDocuments

Get the attachments associated with credit notes.

Table Specific Information

Select

The connector will use the Zoho Books API to process WHERE clause conditions built with the following column and operator. The rest of the filter is executed client side within the connector.

  • CreditnoteId supports the '=,IN' comparisons.
For example:
    SELECT * FROM CreditNoteDocuments WHERE CreditnoteId = '3255827000000101306'

    SELECT * FROM CreditNoteDocuments WHERE CreditnoteId IN ('3255827000000101306', '3255827000000101223')

Columns

Name Type References SupportedOperators Description
DocumentId [KEY] String Id of Document.
CreditNoteId String

CreditNotes.CreditnoteId

= Id of CreditNote.
FileName String Name of the document attached.
AttachmentOrder Integer Integer denoting the order of attachment.
CanShowInPortal Boolean Boolean denoting if the document should be shown in portal or not.
FileSize String Size of the file.
FileType String Type of the file.
Source String Source from where file was uploaded.
UploadedBy String The name of the contact who uploaded the file.
UploadedTime Datetime The date and time when file was uploaded.

CData Python Connector for Zoho Books

CreditNoteInvoices

Retrieves details of invoices from an existing Credit Note.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following column and operator:

  • CreditnoteId supports the '=' and IN operators.

NOTE: CreditnoteId is required to query CreditNoteInvoices.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM CreditNoteInvoices WHERE CreditnoteId = '1895452000000083136'
	SELECT * FROM CreditNoteInvoices WHERE CreditNoteId IN (SELECT CreditNoteID FROM CreditNotes)
	SELECT * FROM CreditNoteInvoices WHERE CreditNoteId IN ('1895452000000083136','1895452000000083137')

Columns

Name Type References SupportedOperators Description
CreditnoteInvoiceId [KEY] String Id of credit note invoice.
CreditnoteId String

CreditNotes.CreditnoteId

Id of a credit note.
Credited_amount Decimal Amount which is credit in credit note invoice.
CreditnoteNumber String Number of a credit note.
Date Date Date of an credit note invoice.
InvoiceId String

Invoices.InvoiceId

Id of an invoice.
InvoiceNumber String Number of an invoice.

CData Python Connector for Zoho Books

CreditNoteLineItems

Retrieves details of line items from existing Credit Notes.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following column and operator:

  • CreditnoteId supports the '=' and IN operators.

NOTE: CreditnoteId is required to query CreditNoteLineItems.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM CreditNoteLineItems WHERE CreditnoteId = '1895452000000083136'
	SELECT * FROM CreditNoteLineItems WHERE CreditnoteId IN (SELECT CreditNoteID FROM CreditNotes)
	SELECT * FROM CreditNoteLineItems WHERE CreditnoteId IN ('1895452000000083136','1895452000000083137')

Columns

Name Type References SupportedOperators Description
CreditnoteId String

CreditNotes.CreditnoteId

Id of credit note.
LineItemId [KEY] String Id of line item.
AccountId String

BankAccounts.AccountId

Id of the Bank Account.
AccountName String Name of the account.
BcyRate Decimal Rate of Base Currency.
CustomFields String Custom Fields
Description String Description of the credit note line item.
Discount String Discount given to specific item in credit note.
DiscountAmount Decimal Amount of discount.
GstTreatmentCode String Treatement codes for GST.
HasProductTypeMismatch Boolean Check if the credit note item contains product type mismatch.
HsnOrSac String HSN Code.
ImageDocumentId String Id of image document.
InvoiceId String

Invoices.InvoiceId

Id of an invoice.
InvoiceItemId String Id of an invoice item.
ItemId String

Items.ItemId

Id of an item.
ItemOrder Integer Order of an item.
ItemTotal Decimal Total number of an item.
ItemType String Type of an item.
Name String Name of the credit note.
PricebookId String Id of price book.
ProductType String Type of product.
ProjectId String

Projects.ProjectId

Id of project.
Quantity Double Quantity of items in credit note.
Rate Decimal Rate of the line item.
ReverseChargeTaxId String Id of the reverse charge tax.
Tags String Details of tags related to credit note line items.
TaxId String

Taxes.TaxId

Id of tax.
TaxName String Name of the tax.
TaxPercentage Integer Percentage applied for tax.
TaxType String Type of tax.
Unit String Number of quantity.
SKU String The SKU of the Line Item.

CData Python Connector for Zoho Books

CreditNotes

Retrieves list of all the Credit Notes.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • CreditnoteNumber supports the '=' comparison.
  • CustomerId supports the '=' comparison.
  • CustomerName supports the '=' comparison.
  • Date supports the '=' comparison.
  • ReferenceNumber supports the '=' comparison.
  • Status supports the '=' comparison.
  • Total supports the '=' comparison.
  • CreditNoteFilter supports the '=' comparison.
  • LineItemId supports the '=' comparison.
  • TaxId supports the '=' comparison.
  • ItemId supports the '=' comparison.
  • ItemName supports the '=' comparison.
  • ItemDescription supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM CreditNotes WHERE CreditnoteNumber = 'CN-00006' AND ReferenceNumber = 'Ref-0075' AND CustomerName = 'AWS Stores'

    SELECT * FROM CreditNotes WHERE CreditNoteFilter = 'Status.All'

Columns

Name Type References SupportedOperators Description
CreditnoteId [KEY] String Id of credit note.
Balance Decimal Total amount of credit note left.
ColorCode String Color code of a credit note.
CreatedTime Datetime Time at which the credit note was created.
CreditnoteNumber String Number of a credit note.
CurrencyCode String Currency code of the customer's currency.
CurrencyId String

Currencies.CurrencyId

Currency Id of the customer's currency.
CurrentSubStatus String Current sub status of a credit note.
CustomerId String

Contacts.ContactId

Id of the customer or vendor.
CustomerName String Name of the customer or vendor.
Date Date Date of a credit note.
HasAttachment Boolean Check if the credit note has attachment.
ReferenceNumber String Reference number of credit note.
Status String Status of the credit note.

The allowed values are open, closed, void.

Total Decimal Total of credit notes.
AppliedInvoices String Invoices to which the credit note is applied.
ClientViewedTime Datetime Time when the credit note was viewed by the client.
CurrentSubStatusId String ID of the current sub-status of the credit note.
ExchangeRate Decimal Exchange rate for the credit note's currency.
IsViewedByClient Boolean Indicates if the credit note has been viewed by the client.
LastModifiedTime Datetime Time when the credit note was last modified.
PricePrecision Integer Price precision for the credit note.
SalespersonId String ID of the salesperson associated with the credit note.
SalespersonName String Name of the salesperson associated with the credit note.
TemplateId String ID of the template used for the credit note.
TemplateType String Type of the template used for the credit note.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
CreditNoteFilter String Filter credit notes by status.

The allowed values are Status.All, Status.Open, Status.Draft, Status.Closed, Status.Void.

LineItemId String Id of a line item.
TaxId String Id of a tax.
ItemId String Id of an item.
ItemName String Name of an item.
ItemDescription String Description of an item.

CData Python Connector for Zoho Books

CreditNoteTemplates

Get all credit note pdf templates.

Table Specific Information

Select

The connector uses the Zoho Books API to retrieve the list of all PDF templates associated with Credit Notes. All filtering is executed client-side in the connector.

For example:

	SELECT * FROM CreditNoteTemplates;

Columns

Name Type References SupportedOperators Description
TemplateId [KEY] String Id of the estimate template
TemplateName String Name of the estimate template
TemplateType String Type of the estimate templates

CData Python Connector for Zoho Books

CurrencyExchangeRates

Retrieves list of exchange rates configured for the currency.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • FromDate supports the '=' comparison.
  • IsCurrentDate supports the '=' comparison.
  • CurrencyId supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM CurrencyExchangeRates WHERE CurrencyId = '1894553000000000089'

    SELECT * FROM CurrencyExchangeRates WHERE CurrencyId = '1894553000000000087' AND IsCurrentDate = true

Columns

Name Type References SupportedOperators Description
CurrencyId [KEY] String

Currencies.CurrencyId

Currency Id of the customer's currency.
CurrencyCode String Currency code of the customer's currency.
EffectiveDate Date Effective date for currency exchange.
IsMarketClosedRates Boolean Check if the rates are closed to markets.
Rate Decimal Rate of exchange for the currency with respect to base currency.
RateFormatted String Rate of exchange for the currency with respect to base currency including currency symbol.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
FromDate Date Returns the exchange rate details from the given date or from previous closest match in the absence of the exchange rate on the given date.
IsCurrentDate Boolean To return the exchange rate only if available for current date.

CData Python Connector for Zoho Books

customerbalancesreport

Generated schema file.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • ReportDate supports the '=' comparison.
  • CustomerID supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM customerbalancesreport WHERE ReportDate = '2022-10-31'

    SELECT * FROM customerbalancesreport WHERE CustomerID = '3456743221369'

Columns

Name Type References SupportedOperators Description
AvailableCredits Integer Available Credits
BcyAdvancePayment String BcyAdvance Payment
BcyAvailableCredits Integer Bcy Available Credits
BcyBalance Integer Bcy Balance
BcyCreditBalance String Bcy CreditBalance
BcyInvoiceBalance Integer Bcy Invoice Balance
BcyJournalCredits String Bcy Journal Credits
ContactCompanyName String Contact Company Name
ContactCreatedBy String Contact Created By
ContactCreatedTime Datetime Contact Created Time
ContactCreditLimit Integer Contact Credit Limit
ContactCustomerSubType String Contact Customer SubType
ContactDepartment String Contact Department
ContactDesignation String Contact Designation
ContactEmail String Contact Email
ContactFacebook String Contact Facebook
ContactFirstName String Contact First Name
ContactLastModifiedTime Datetime Contact Last Modified Time
ContactLastName String Contact Last Name
ContactMobilePhone String Contact Mobile Phone
ContactNotes String Contact Notes
ContactOutstandingReceivableAmount Integer Contact Outstanding Receivable Amount
ContactOutstandingReceivableAmountBcy Integer Contact Outstanding Receivable Amount Bcy
ContactPaymentTerms String Contact Payment Terms
ContactPhone String Contact Phone
ContactSkype String Contact Skype
ContactStatus String Contact Status
ContactTwitter String Contact Twitter
ContactUnusedCreditsReceivableAmount Integer Contact Unused Credits Receivable Amount
ContactUnusedCreditsReceivableAmountBcy Integer Contact Unused Credits Receivable Amount Bcy
ContactWebsite String Contact Website
CreditLimit Integer Credit Limit
CurrencyId String Currency Id
CustomerName String Customer Name
FcyAdvancePayment String Fcy AdvancePayment
FcyBalance Integer Fcy Balance
FcyCreditBalance String Fcy Credit Balance
FcyJournalCredits String Fcy Journal Credits
InvoiceBalance Integer Invoice Balance
TotalBcyAdvancePayment String Total Bcy Advance Payment
TotalBcyAvailableCredits Integer Total Bcy Available Credits
TotalBcyBalance Integer Total Bcy Balance
TotalBcyCreditBalance String Total Bcy Credit Balance
TotalBcyInvoiceBalance Integer Total Bcy Invoice Balance
TotalBcyJournalCredits String Total Bcy Journal Credits
CustomerId String = Customer Id

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
ReportDate Date Report Date

CData Python Connector for Zoho Books

CustomerPaymentInvoices

Retrieves invoices related to customer payments.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the PaymentId column, which supports '=,IN' comparisons.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM CustomerpaymentInvoices WHERE PaymentId = '3255827000000101040'

    SELECT * FROM CustomerpaymentInvoices WHERE PaymentId IN ('3255827000000101040', '3255827000000102354')

Columns

Name Type References SupportedOperators Description
InvoicePaymentId [KEY] Long The Invoice PaymentId
InvoiceId String

Invoices.InvoiceId

The Invoice Id
PaymentId String

CustomerPayments.PaymentId

The Customer Payment Id
InvoiceCustomerId Long The Invoice Customer Id
InvoiceCustomerName String The Invoice Customer Name
AmountApplied Integer The Amount applied to the Entity
Balance Integer The unpaid amount
DiscountAmount Integer The Discount Amount
Date Date The Date when invoice was created
Total Integer The Total amount
InvoiceNumber String The Invoice Number

CData Python Connector for Zoho Books

CustomerPayments

Retrieves list of all the payments made by your customer.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • PaymentMode supports the '=' comparison.
  • Amount supports the '=,<,<=,>,>=' comparisons.
  • CustomerName supports the '=' comparison.
  • Date supports the '=' comparison.
  • ReferenceNumber supports the '=' comparison.
  • PaymentModeFilter supports the '=' comparison.
  • Notes supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM CustomerPayments WHERE Amount < 900 AND Amount > 50 AND ReferenceNumber = '1894553000000079879'

    SELECT * FROM CustomerPayments WHERE CustomerName = 'Harry'

    SELECT * FROM CustomerPayments WHERE CONTAINS (ReferenceNumber, '455')

Columns

Name Type References SupportedOperators Description
PaymentId [KEY] String Id of a payment.
AccountId String

BankAccounts.AccountId

Id of the Bank Account.
PaymentMode String Mode through which payment is made.
PaymentNumber String Number through which payment is made.
PaymentType String Type of the payment.
AccountName String Name of the account.
Amount Decimal =,<,<=,>,>= Amount of the customer payments.
BcyAmount Decimal Amount applied for Base Currency.
BcyRefundedAmount Decimal Refunded amount from Base Currency.
BcyUnusedAmount Decimal Unused amount from Base Currency.
CreatedTime Datetime Time at which the customer payment was created.
CustomerId String

Contacts.ContactId

Id of the customer or vendor.
CustomerName String Name of the customer or vendor.
Date Date Date of a customer payment.
GatewayTransactionId String Id of gateway transaction.
HasAttachment Boolean Check if the customer payment has an attachment.
LastModifiedTime Datetime The time of last modification of the customer payment.
ReferenceNumber String Reference number of a customer payment.
AppliedInvoices String List of invoices to which the payment is applied.
Description String Description of the payment.
Documents String Documents associated with the payment.
InvoiceNumbers String Numbers of the invoices.
LastFourDigits Integer Last four digits of the card number.
PaymentGateway String Payment gateway used.
PaymentStatus String Status of the payment.
ProductDescription String Description of the product.
SettlementStatus String Settlement status of the payment.
TaxAccountId String ID of the tax account.
TaxAccountName String Name of the tax account.
TaxAccountWithheld Decimal Amount withheld for tax account.
UnusedAmount Decimal Unused amount from the payment.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
PaymentModeFilter String Filter customer payments by payment mode.

The allowed values are PaymentMode.All, PaymentMode.Check, PaymentMode.Cash, PaymentMode.BankTransfer, PaymentMode.Paypal, PaymentMode.CreditCard, PaymentMode.GoogleCheckout, PaymentMode.Credit, PaymentMode.Authorizenet, PaymentMode.BankRemittance, PaymentMode.Payflowpro, PaymentMode.Stripe, PaymentMode.TwoCheckout, PaymentMode.Braintree, PaymentMode.Others.

Notes String Notes of customer payments.

CData Python Connector for Zoho Books

CustomModuleFieldDropDownOptions

In Zoho Books, you can create a custom module to record other data when the predefined modules are not sufficient to manage all your business requirements.

Columns

Name Type References SupportedOperators Description
EntityName String Name of Entity.
OptionName String Option Name.
OptionOrder Integer Option Order.

CData Python Connector for Zoho Books

Documents

Get the list of all the documents associated with any entity.

Table Specific Information

Select

All filters are executed client side within the connector.

    SELECT * FROM Documents

Columns

Name Type References SupportedOperators Description
DocumentId [KEY] String Id of Document.
DocumentEntityIds String Id of the entity to which the document is associated.
FileName String Name of the document attached.
HasMoreEntity Boolean Boolean denoting if the document has more entity or not associated with it.
IsStatement Boolean Boolean denoting if the document is a statement.
FileSize String Size of the file.
FileType String Type of the file.
Source String Source from where file was uploaded.
DocumentTransactions String Transactions.
UploadedById String Id of the person who uploaded the doc.
UploadedByName String The name of the contact who uploaded the file.
CreatedTime Datetime The date and time when file was uploaded.

CData Python Connector for Zoho Books

Employees

Retrieves list of employees. Also, get the details of an employee.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • Status supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM Employees WHERE Status = 'All'

Columns

Name Type References SupportedOperators Description
EmployeeId [KEY] String Id of an employee.
Name String Name of an employee.
Email String Email address of an employee.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
Status String Filter employee based on the status.

The allowed values are All, Billable, Nonbillable, Reimbursed, Invoiced, Unbilled.

CData Python Connector for Zoho Books

EstimateApprovers

Get the details of approvers for estimates.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following column and operator:

  • EstimateId supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM EstimateApprovers WHERE EstimateId = '1894553000000077244'

Columns

Name Type References SupportedOperators Description
EstimateId String

Estimates.EstimateId

Id of an estimate.
ApproverUserId [KEY] String

Users.UserId

User Id of an approver.
Order String Order number.
ApproverName String Name of the approver.
Email String Email Id of the approver.
Has_approved Boolean Check if the User has approved the estimate.
ApprovalStatus String Status of an approval.
IsNextApprover String Check if it is a next approver.
SubmittedDate Date Date of submission.
ApprovedDate Date Date of approval.
PhotoUrl String Photo Url.
UserStatus String Status of a user.
IsFinalApprover Boolean Check if this is a final approver.

CData Python Connector for Zoho Books

EstimateLineItems

Get the details of line items for estimates.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following column and operator:

  • EstimateId supports the '=' and IN operators.

NOTE: EstimateId is required to query EstimateLineItems.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM EstimateLineItems WHERE EstimateId = '1894553000000077244'
	SELECT * FROM EstimateLineItems WHERE EstimateId IN (SELECT EstimateId FROM Estimates)
	SELECT * FROM EstimateLineItems WHERE EstimateId IN ('1894553000000077244','1894553000000077245')

Columns

Name Type References SupportedOperators Description
LineItemId [KEY] String Id of the line item.
EstimateId String

Estimates.EstimateId

Id of an estimate.
BcyRate Decimal Rate of base currency.
CustomFields String Custom Fields defined for the line item
Description String Description of the estimate line items.
Discount String Discount given to specific item in estimate.
DiscountAmount Decimal Amount of discount given to estimate.
HeaderId String Id of the header.
HeaderName String Name of the header.
ItemId String

Items.ItemId

Id of the item.
ItemOrder Integer Order of the item.
ItemTotal Decimal Total number of items.
Name String Name of the line item.
PricebookId String Id of a pricebook.
Quantity Decimal Quantity of the line item.
Rate Decimal Rate of the line item.
Tags String Details of tags related to estimates.
TaxId String

Taxes.TaxId

Id of tax.
TaxName String Name of the tax.
TaxPercentage Integer Percentage applied for tax.
TaxType String Type of tax.
Unit String Number of quantity.
SKU String The SKU of the Line Item.
Discounts String Discounts applied to the line item.
Documents String Documents associated with the line item.
ImageDocumentId String ID of the image document for the line item.
InternalName String Internal name of the line item.
LineItemTaxes String Taxes applied to the line item.
PricingScheme String Pricing scheme of the line item.
TdsTaxAmount Decimal TDS tax amount for the line item.
TdsTaxId String ID of the TDS tax for the line item.
TdsTaxName String Name of the TDS tax for the line item.
TdsTaxPercentage Decimal Percentage of the TDS tax for the line item.
TdsTaxType String Type of the TDS tax for the line item.

CData Python Connector for Zoho Books

Estimates

Retrieves list of all estimates.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • CustomerId supports the '=' comparison.
  • CustomerName supports the '=' comparison.
  • Date supports the '=,<,>' comparisons.
  • EstimateNumber supports the '=' comparison.
  • ExpiryDate supports the '=' comparison.
  • ReferenceNumber supports the '=' comparison.
  • Status supports the '=' comparison.
  • Total supports the '=,<,<=,>,>=' comparisons.
  • ItemId supports the '=' comparison.
  • ItemName supports the '=' comparison.
  • ItemDescription supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM Estimates WHERE Total >= 500 AND Total <= 600

    SELECT * FROM Estimates WHERE Date <= '2019-02-26'

    SELECT * FROM Estimates ORDER BY CustomerName

    SELECT * FROM Estimates WHERE CONTAINS (EstimateNumber, '006')

Columns

Name Type References SupportedOperators Description
EstimateId [KEY] String Id of an estimate.
AcceptedDate Date Accepted date of an estimate.
ClientViewedTime Datetime Time when client viewed the estimate.
ColorCode String Color code of estimates.
CompanyName String Name of the company.
CreatedTime Datetime Time at which the estimate was created.
CurrencyCode String Currency code of the customer's currency.
CurrencyId String

Currencies.CurrencyId

Currency Id of the customer's currency.
CustomerId String

Contacts.ContactId

Id of the customer or vendor. Search estimates by customer id..
CustomerName String Name of the customer or vendor. Search estimates by customer name.
Date Date =,<,> Date of an estimate.
DeclinedDate Date Declined date of the estimate.
EstimateNumber String Number of the estimate.
ExpiryDate Date The date of expiration of the estimates.
HasAttachment Boolean Check if the estimate has attachment.
IsEmailed Boolean Check if the estimate is emailed.
ReferenceNumber String Reference number of the estimate.
Status String Status of the estimate.

The allowed values are draft, sent, invoiced, accepted, declined, expired.

Total Decimal =,<,<=,>,>= Total of estimates. Search estimates by estimate total.
IsViewedByClient Boolean Whether the estimate can be viewed by the Client or not.
IsViewedInMail Boolean Whether the estimate can be viewed in the Mail or not.
LastModifiedTime Datetime Time when the estimate has been modified.
MailFirstViewedTime Datetime Time when the estimate is viewed in the mail for the first time.
MailLastViewedTime Datetime Time when the estimate is viewed in the mail for the last time.
SalesPersonId String Id of the Sales person associated with the estimate.
SalesPersonName String Name of the Sales Person associated with the estimate.
TemplateId String ID of the pdf template associated with the estimate.
TemplateType String Type of the pdf template associated with the estimate.
ZcrmPotentialId String = Potential ID of a Deal in CRM.
ZcrmPotentialName String Name of a Deal in CRM.
CurrentSubStatus String Current Status of the estimate.
CurrentSubStatusId String Current Status Id of the estimate.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
ItemId String Id of the item.
ItemName String Name of an item.
ItemDescription String Description of an item.
EstimateFilter String Filter estimates by status.

The allowed values are Status.All, Status.Sent, Status.Draft, Status.Invoiced, Status.Accepted, Status.Declined, Status.Expired.

CData Python Connector for Zoho Books

EstimateTemplates

Get all estimate pdf templates.

Table Specific Information

Select

The connector uses the Zoho Books API to retrieve the list of all PDF templates associated with Estimates. All filtering is executed client-side in the connector.

For example:

  SELECT * FROM EstimateTemplates;

Columns

Name Type References SupportedOperators Description
TemplateId [KEY] String Id of the estimate template
TemplateName String Name of the estimate template
TemplateType String Type of the estimate templates

CData Python Connector for Zoho Books

Expenses

Retrieves list of all the Expenses.

Table Specific Information

Select

  • AccountName supports the '=' comparison.
  • CustomerId supports the '=' comparison.
  • CustomerName supports the '=' comparison.
  • Description supports the '=' comparison.
  • PaidThroughAccountName supports the '=' comparison.
  • ReferenceNumber supports the '=' comparison.
  • Status supports the '=' comparison.
  • VendorId supports the '=' comparison.
  • VendorName supports the '=' comparison.
  • RecurringExpenseId supports the '=' comparison.
  • ExpenseFilter supports the '=' comparison.
  • Date supports the '=,<,>' comparisons.
  • Amount supports the '=,<,<=,>,>=' comparisons.

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators: The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM Expenses WHERE Amount < 10000.0 AND Amount > 300.0

    SELECT * FROM Expenses WHERE ExpenseFilter = 'Status.Billable'

Columns

Name Type References SupportedOperators Description
ExpenseId [KEY] String Id of an expense.
AccountName String Name of the account.
BcyTotal Decimal Total Base Currency.
BcyTotalWithoutTax Decimal Base Currency total amount without tax.
CreatedTime Datetime Time at which the expense was created.
CurrencyCode String Currency code of the customer's currency.
CurrencyId String

Currencies.CurrencyId

Currency Id of the customer's currency.
CustomerId String

Contacts.ContactId

Id of the customer or vendor.
CustomerName String Name of the customer or vendor.
Date Date =,<,> Date of an expense.
Description String Description of the expense.
Distance Double Distance Covered.
EndReading String End reading of odometer when creating a mileage expense where mileage_type is odometer.
ExchangeRate Decimal Exchange rate of the currency.
ExpenseReceiptName String Name of the expense receipt.
ExpenseType String Type of an expense.
HasAttachment Boolean Check if the expense has attachment.
IsBillable Boolean Check if the expense is billable.
IsPersonal Boolean Check if the expense is personal.
LastModifiedTime Datetime The time of last modification of the expense.
MileageRate Double Mileage rate for a particular mileage expense.
MileageType String Type of Mileage.
MileageUnit String Unit of the distance travelled.
PaidThroughAccountName String Name of account which payment was paid.
ReferenceNumber String Reference number of a expense.
ReportId String Id of report.
ReportName String Name of the report.
StartReading String Start reading of odometer when creating a mileage expense where mileage_type is odometer.
Status String Status of the expense.

The allowed values are unbilled, invoiced, reimbursed, non-billable, billable.

Total Decimal Total of expenses.
TotalWithoutTax Decimal Total amount of expense calculated without tax.
VendorId String Id of the vendor the expense has been made.
VendorName String Name of the vendor the expense has been made.
UserName String Name of a user.
PaidThroughAccountId String Search expenses by paid through account id.
ReportNumber String Number of the report.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
Amount Decimal Amount of the expenses.
ExpenseFilter String Filter expenses by their status.

The allowed values are Status.All, Status.Billable, Status.Nonbillable, Status.Reimbursed, Status.InvoicedStatus.Unbilled.

RecurringExpenseId String Id of the recurring expense.

CData Python Connector for Zoho Books

GeneralLedgerReport

Generated schema file.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • TransactionDate supports the '=' comparison.
  • ToDate supports the '=' comparison.
  • FromDate supports the '=' comparison.
  • CashBased supports the '=' comparison.
  • AccountType supports the '=' comparison.
  • ProjectId supports the 'IN, IS NULL, IS NOT NULL' comparisons.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM GeneralLedgerReport WHERE TransactionDate = 'Today'

    SELECT * FROM GeneralLedgerReport WHERE ToDate = '2022-10-31'

    SELECT * FROM GeneralLedgerReport WHERE FromDate = '2022-10-10' AND ToDate = '2022-10-31'

    SELECT * FROM GeneralLedgerReport WHERE CashBased = True
	
	SELECT * FROM GeneralLedgerReport WHERE AccountType = 'Asset'
	
	SELECT * FROM GeneralLedgerReport WHERE ProjectId IN ('234457895670')

Columns

Name Type References SupportedOperators Description
AccountCode String Account Code
AccountGroup String Account Group
AccountId String Account Id
Balance Integer Balance
BalanceSubAccount String Balance Sub Account
ClosingBalance Integer Closing Balance
ClosingBalanceSubAccount Integer Closing Balance Sub Account
CreditTotal Integer Credit Total
CreditTotalSubAccount String Credit TotalSub Account
DebitTotal Integer Debit Total
DebitTotalSubAccount String Debit TotalSub Account
Depth Integer Depth
IsChildPresent Boolean Is Child Present
IsCollapsedView Boolean Is Collapsed View
IsDebit Boolean IsDebit
Name String Name
OpeningBalance Integer Opening Balance
OpeningBalanceSubAccount Integer Opening Balance Sub Account
PreviousValues String Previous Values
AccountType String = Account Type

The allowed values are Asset, OtherAsset, OtherCurrentAsset, Bank, Cash, FixedAsset, Liability, OtherCurrentLiability, CreditCard, LongTermLiablity, OtherLiability, Equity, Income, OtherIncome, Expense, CostOfGoodsSold, OtherExpense, AccountsReceivable, AccountsPayable, Stock, PaymentClearingAccount, PrepaidCard, OverseasTaxPayable, OutputTax, InputTax.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
CashBased Boolean Cash Based
TransactionDate String Filter transaction by any transaction date.

The allowed values are Today, ThisWeek, ThisMonth, ThisQuarter, ThisYear, PreviousDay, PreviousWeek, PreviousMonth, PreviousQuarter, PreviousYear, CustomDate.

ToDate Date To Date
FromDate Date From Date
ProjectId String

CData Python Connector for Zoho Books

GetContactStatementEmailContent

Retrieves the content of the mail sent to a contact.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • ContactId supports '=,IN' comparisons.
  • StartDate supports '=' comparisons.
  • EndDate supports '=' comparisons.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM GetContactStatementEmailContent WHERE contactid = '3255827000000093001'

    SELECT * FROM GetContactStatementEmailContent WHERE contactid = '3255827000000093001' AND startdate = '22-01-2023' 

    SELECT * FROM GetContactStatementEmailContent WHERE contactid IN ('3255827000000093001', '3255827000000102354')

Columns

Name Type References SupportedOperators Description
Body String The Body of an email has to be sent. Max-length [5000]
StartDate Date = The Date when or after the contact was created
EndDate Date = The Date after the contact was created
ContactId String

Contacts.ContactId

= The Contact Id
FileName String The File Name
FromEmails String The From Emails
Subject String The Subject of an email has to be sent. Max-length [1000]
ToContacts String To Contacts
ContactName String Name of the contact.
EmailTemplates String List of email templates.
FileNameWithoutExtension String File name without the extension.
FromEmail String Email address of the sender.
BccMails String List of BCC email addresses.
BccMailsStr String Comma-separated string of BCC emails.
CcMailsList String List of CC email addresses.
CcMailsStr String Comma-separated string of CC emails.
FromAddress String Physical address of the sender.
ToMailsStr String Comma-separated string of recipient emails.

CData Python Connector for Zoho Books

InventorySummaryReport

Generated schema file.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • TransactionDate supports the '=' comparison.
  • ToDate supports the '=' comparison.
  • FromDate supports the '=' comparison.
  • WarehouseId supports the '=' comparison.
  • StockAvailability supports the '=' comparison.
  • Status supports the '=' comparison.
  • ItemId supports the 'IN' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM InventorySummaryReport WHERE TransactionDate = 'Today'

    SELECT * FROM InventorySummaryReport WHERE ToDate = '2022-10-31'

    SELECT * FROM InventorySummaryReport WHERE FromDate = '2022-10-10' AND ToDate = '2022-10-31'

    SELECT * FROM InventorySummaryReport WHERE warehouseid = '3285934000000113095'

    SELECT * FROM InventorySummaryReport WHERE StockAvailability = 'AvailableStock'

    SELECT * FROM InventorySummaryReport WHERE ItemId IN ('5672409674565')

    SELECT * FROM InventorySummaryReport WHERE Status = 'Active'

Columns

Name Type References SupportedOperators Description
CategoryId String Category Id
CategoryName String Category Name
IsComboProduct Boolean Is Combo Product
QuantityAvailable Double Quantity Available
QuantityAvailableForSale Double Quantity AvailableForSale
QuantityDemanded Double Quantity Demanded
QuantityOrdered Double Quantity Ordered
QuantityPurchased Double Quantity Purchased
QuantitySold Double Quantity Sold
ReorderLevel String Reorder Level
Unit String Unit
ItemName String Item Name
Status String Status

The allowed values are All, Active, Inactive.

The default value is All.

Sku String Sku
ItemId String Item Id

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
WarehouseId String Warehouse Id
StockAvailability String Stock Availability

The allowed values are AvailableStock, OutOfStock, StockLessThanZero, StockEqualToZero.

The default value is All.

TransactionDate String Filter transaction by any transaction date.

The allowed values are Today, ThisWeek, ThisMonth, ThisQuarter, ThisYear, PreviousDay, PreviousWeek, PreviousMonth, PreviousQuarter, PreviousYear and CustomDate.

ToDate Date To Date
FromDate Date From Date

CData Python Connector for Zoho Books

InventoryValuationReport

Generated schema file.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • TransactionDate supports the '=' comparison.
  • ToDate supports the '=' comparison.
  • FromDate supports the '=' comparison.
  • ItemId supports the 'IN' comparison.
  • Status supports the '=' comparison.
  • StockAvailability supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM InventoryValuationReport WHERE TransactionDate = 'Today'

    SELECT * FROM InventoryValuationReport WHERE ToDate = '2022-10-31'

    SELECT * FROM InventoryValuationReport WHERE FromDate = '2022-10-10' AND ToDate = '2022-10-31'

    SELECT * FROM InventoryValuationReport WHERE StockAvailability = 'AvailableStock'

    SELECT * FROM InventoryValuationReport WHERE ItemId IN ('5672409674565')

    SELECT * FROM InventoryValuationReport WHERE Status = 'Active'

Columns

Name Type References SupportedOperators Description
AssetValue Integer Asset Value
CategoryId String Category Id
CategoryName String Category Name
ItemCreatedBy String Item Created By
ItemCreatedTime Datetime Item Created Time
ItemDescription String Item Description
ItemItemType String Item Item Type
ItemLastModifiedTime Datetime Item Last Modified Time
ItemProductType String Item Product Type
ItemPurchaseDescription String Item Purchase Description
ItemPurchaseRate Integer Item Purchase Rate
ItemSalesPrice Integer Item Sales Price
ItemSalesDescription String Item Sales Description
ItemRate Integer Item Rate
ItemSku String Item Sku
ItemStatus String Item Status
ItemUnit String Item Unit
QuantityAvailable Integer Quantity Available
ReorderLevel String Reorder Level
ItemName String ItemName
Sku String Sku
ItemId String IN ItemId
Status String = Status

The allowed values are All, Active, Inactive.

The default value is All.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
StockAvailability String Stock Availability

The allowed values are AvailableStock, OutOfStock, StockLessThanZero, StockEqualToZero.

The default value is All.

TransactionDate String Filter transaction by any transaction date.

The allowed values are Today, ThisWeek, ThisMonth, ThisQuarter, ThisYear, PreviousDay, PreviousWeek, PreviousMonth, PreviousQuarter, PreviousYear and CustomDate.

ToDate Date To Date
FromDate Date From Date

CData Python Connector for Zoho Books

InvoiceAppliedCredits

Retrieves list of credits applied for an invoice.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following column and operator:

  • InvoiceId supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM InvoiceAppliedCredits WHERE InvoiceId = '1864543000000078539'

Columns

Name Type References SupportedOperators Description
CreditnotesInvoiceId [KEY] String Id of credit note invoice.
InvoiceId String

Invoices.InvoiceId

Id of an invoice.
CreditnoteId String

CreditNotes.CreditnoteId

Id of a credit note.
AmountApplied Decimal Amount used for the credit note.
CreditedDate Date Date when the credit was applied to the invoice.
CreditnotesNumber String Total number of credit notes applied to the invoice.

CData Python Connector for Zoho Books

InvoiceDocuments

Get the attachments associated with invoices.

Table Specific Information

Select

The connector will use the Zoho Books API to process WHERE clause conditions built with the following column and operator. The rest of the filter is executed client side within the connector.

  • InvoiceId supports the '=,IN' comparisons.
For example:
    SELECT * FROM InvoiceDocuments WHERE InvoiceId = '3255827000000101306'

    SELECT * FROM InvoiceDocuments WHERE InvoiceId IN ('3255827000000101306', '3255827000000101223')

Columns

Name Type References SupportedOperators Description
DocumentId [KEY] String Id of Document.
InvoiceId String

Invoices.InvoiceId

= Id of a Invoice.
FileName String Name of the document attached.
AttachmentOrder Integer Integer denoting the order of attachment.
CanSendInMail Boolean Boolean denoting if the document should be send in mail or not.
FileSize String Size of the file.
FileType String Type of the file.
Source String Source from where file was uploaded.
UploadedBy String The name of the contact who uploaded the file.
UploadedTime Datetime The date and time when file was uploaded.

CData Python Connector for Zoho Books

InvoiceLineItems

Get the details of line items from invoices.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following column and operator:

  • InvoiceId supports the '=' and IN operators.

NOTE: InvoiceId is required to query InvoiceLineItems.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM InvoiceLineItems WHERE InvoiceId = '1864543000000078539'
	SELECT * FROM InvoiceLineItems WHERE InvoiceId IN (SELECT InvoiceId FROM Invoices)
	SELECT * FROM InvoiceLineItems WHERE InvoiceId IN ('1864543000000078539','1864543000000078540')

Columns

Name Type References SupportedOperators Description
LineItemId [KEY] String Line Item Id of an item.
InvoiceId String

Invoices.InvoiceId

Id of an invoice.
AccountId String

BankAccounts.AccountId

Id of the Bank Account.
AccountName String Name of the account.
BcyRate Decimal Rate of Base Currency.
BillId String

Bills.BillId

Id of an invoice.
BillItemId String Item Id of an invoice.
CustomFields String Custom Fields added for the line item
Description String Description of the invoice line item.
Discount String Discount applied in invoice.
DiscountAmount Decimal Discount Amount applied in invoice.
ExpenseId String

Expenses.ExpenseId

Id of an expense.
ExpenseReceiptName String Receipt name of an expense.
GstTreatmentCode String Code GST treatement.
HasProductTypeMismatch Boolean Check if product type mismatch or not.
HeaderId String Id of a header.
HeaderName String Name of a header.
HsnOrSac String HSN Code.
ItemId String

Items.ItemId

Id of an item.
ItemOrder Integer Order of an item.
ItemTotal Decimal Total number of an item.
ItemType String Type of an item.
Name String Name of an invoice.
ProductType String Type of the product.
ProjectId String

Projects.ProjectId

Id of the project.
PurchaseRate Double Purchase rate of an invoice.
Quantity Decimal Quantity of line items.
Rate Decimal Rate of the line item.
ReverseChargeTaxId String Id of the reverse charge tax.
SalesorderItemId String Item Id of sales order.
TaxId String

Taxes.TaxId

Id of tax.
TaxName String Name of tax.
TaxPercentage Integer Percentage of tax.
TaxType String Type of tax applied to invoice line item.
Unit String Number of unit in line items.
SKU String The SKU of the Line Item.

CData Python Connector for Zoho Books

InvoicePayments

Get the list of payments made for an invoice.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following column and operator:

  • InvoiceId supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM InvoicePayments WHERE InvoiceId = '1864543000000078539'

Columns

Name Type References SupportedOperators Description
InvoicePaymentId [KEY] String Id of an invoice payment.
InvoiceId String

Invoices.InvoiceId

Id of an invoice.
PaymentId String Id of payment.
PaymentNumber String Number through which payment is made.
PaymentMode String Mode through which payment is made.
Description String Description of the invoice payment.
Date Date Date of an invoice payment.
ReferenceNumber String Reference number of an invoice payment.
ExchangeRate Decimal Exchange rate provided for this invoice.
Amount Decimal Amount of the invoice payments.
TaxAmountWithheld Decimal Amount withheld for tax.
OnlineTransactionId String Id of online transaction.
IsSingleInvoicePayment Boolean Check if the invoice is single invoice payment.

CData Python Connector for Zoho Books

Invoices

Retrieves list of all invoices.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • InvoiceNumber supports the '=' comparison.
  • ProjectId supports the '=' comparison.
  • Balance supports the '=' comparison.
  • CustomerId supports the '=' comparison.
  • CustomerName supports the '=' comparison.
  • Date supports the '=,<,>' comparisons.
  • DueDate supports the '=,<,>' comparisons.
  • LastModifiedTime supports the '=' comparison.
  • ReferenceNumber supports the '=' comparison.
  • Status supports the '=' comparison.
  • Total supports the '=' comparison.
  • Email supports the '=' comparison.
  • RecurringInvoiceId supports the '=' comparison.
  • ItemId supports the '=' comparison.
  • ItemName supports the '=' comparison.
  • ItemDescription supports the '=' comparison.
  • InvoiceFilter supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM Invoices WHERE InvoiceNumber = 'INV-000057' AND CustomerName = 'OldTech Industries' AND Date = '2016-03-02'

    SELECT * FROM Invoices WHERE DueDate > '2019-07-02'

    SELECT * FROM Invoices ORDER BY CreatedTime DESC

Columns

Name Type References SupportedOperators Description
InvoiceId [KEY] String Id of an invoice.
InvoiceNumber String Number of an invoice.
Adjustment Decimal Adjustments made to the invoices.
Balance Decimal The unpaid amount.
CompanyName String Name of the conpany.
CreatedTime Datetime Time at which the invoice was created.
CustomerId String

Contacts.ContactId

Id of the customer the invoice has to be created.
CustomerName String The name of the customer.
Date Date =,<,> Date of an invoice.
DueDate Date =,<,> Date of when the invoice is due.
DueDays String Number of due day left for invoice.
HasAttachment Boolean Check if the invoice has attachment.
InvoiceURL String URL of Invoice.
LastModifiedTime Datetime The time of last modification of the invoice.
ProjectName String Name of the project.
ReferenceNumber String The reference number of the invoice.
Status String Status of the invoice.

The allowed values are sent, draft, overdue, paid, void, unpaid, partially_paid, viewed.

Total Decimal Total of invoices.
AchPaymentInitiated Boolean Indicates if an ACH payment was initiated.
BillingAddress String Billing address of an invoice.
BillingAddressAttention String Name of a person in billing address.
BillingAddressCity String City of a billing address.
BillingAddressCountry String Country of a billing address.
BillingAddressFax String Fax of a billing address.
BillingAddressPhone String Phone number of a billing address.
BillingAddressState String State of a billing address.
BillingAddressStreet2 String Street two of a billing address.
BillingAddressZip String ZIP code of a billing address.
ClientViewedTime Datetime Time when the invoice was viewed by the client.
ColorCode String Color code for the invoice.
Country String Country of the invoice.
CreatedBy String User who created the invoice.
CurrencyCode String The currency code in which the invoice is created
CurrencyId String The currency id of the currency.
CurrencySymbol String Currency symbol of the invoice.
CurrentSubStatus String Current sub-status of the invoice.
CurrentSubStatusId String ID of the current sub-status.
Documents String Documents attached to the invoice.
ExchangeRate Decimal Exchange rate of the currency.
IsEmailed Boolean Boolean check to see if the mail has been sent.
IsPreGst Boolean Applicable for transactions that fall before july 1, 2017
IsViewedByClient Boolean Indicates if the invoice has been viewed by the client.
IsViewedInMail Boolean Indicates if the invoice has been viewed in mail.
LastPaymentDate Date Date of the last payment received for the invoice.
LastReminderSentDate Date The date the last email was sent
MailFirstViewedTime Datetime Time when the mail was first viewed.
MailLastViewedTime Datetime Time when the mail was last viewed.
NoOfCopies Integer Number of copies of the invoice.
PaymentExpectedDate Date Expected date of payment.
Phone String Phone number associated with the invoice.
RemindersSent Integer Number of reminders sent for the invoice.
SalespersonId String Salesperson ID associated with the invoice.
SalespersonName String Salesperson name associated with the invoice.
ScheduleTime Datetime Scheduled time for the invoice.
ShippingAddress String Shipment Address.
ShippingAddressAttention String Name of a person of shipping address.
ShippingAddressCity String City of a shipping address.
ShippingAddressCountry String Country of a shipping address.
ShippingAddressFax String Fax of a shipping address.
ShippingAddressPhone String Phone number of a shipping address.
ShippingAddressState String State of a shipping address.
ShippingAddressStreet2 String Street two details of a shipping address.
ShippingAddressZip String Zip code of a shipping address.
ShippingCharge Decimal Shipping charge applied to the invoice.
ShowNoOfCopies Boolean Indicates if the number of copies should be shown.
TemplateId String Template ID used for the invoice.
TemplateType String Type of template used.
TransactionType String Type of transaction for the invoice.
Type String Type of the invoice.
UnprocessedPaymentAmount Decimal Unprocessed payment amount for the invoice.
UpdatedTime Datetime Time when the invoice was last updated.
WriteOffAmount Decimal Write-off amount for the invoice.
ZcrmPotentialId String Zoho CRM Potential ID.
ZcrmPotentialName String Zoho CRM Potential Name.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
Email String Email address of an invoice.
RecurringInvoiceId String Id of the recurring invoice from which the invoice is created.
ItemId String Id of an item.
ItemName String Name of an item.
ItemDescription String Description of an item.
InvoiceFilter String Filter invoices by any status or payment expected date.

The allowed values are Status.All, Status.Sent, Status.Draft, Status.OverDue, Status.Paid, Status.Void, Status.Unpaid, Status.PartiallyPaid, Status.Viewed, Date.PaymentExpectedDate.

CData Python Connector for Zoho Books

InvoiceTemplates

Get all invoice pdf templates.

Table Specific Information

Select

The connector uses the Zoho Books API to retrieve the list of all PDF templates associated with Invoices. All filtering is executed client-side in the connector.

For example:

  SELECT * FROM InvoiceTemplates;

Columns

Name Type References SupportedOperators Description
TemplateId [KEY] String Id of the estimate template
TemplateName String Name of the estimate template
TemplateType String Type of the estimate templates

CData Python Connector for Zoho Books

Items

Retrieves list of all active items.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • TaxId supports the '=' comparison.
  • TaxName supports the '=' comparison.
  • Description supports the '=' comparison.
  • Name supports the '=' comparison.
  • Rate supports the '=,<,<=,>,>=' comparisons.
  • AccountId supports the '=' comparison.
  • Status supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM Items WHERE Rate < 200 AND Rate > 24.9

    SELECT * FROM Items WHERE Description = '16' AND Name = 'Monitor'

Columns

Name Type References SupportedOperators Description
ItemId [KEY] String Id of an item.
ItemName String Name of an item.
ItemType String Type of item.
TaxId String

Taxes.TaxId

Id of a tax.
TaxName String Name of tax.
TaxPercentage Integer Tax percentage of item.
AccountName String Name of the account
Description String Description of an item.
HasAttachment Boolean Check if the items has attachment.
ImageDocumentId String Id of an image document.
Name String Name of an item.
Rate Decimal =,<,<=,>,>= Price of the item. Search items by rate.
ReorderLevel String Reorder level of the item.
Status String Status of the item.

The allowed values are All, Active, Inactive.

SKU String The SKU of the Item.
CanBePurchased Boolean Check if the item can be purchased.
CanBeSold Boolean Check if the items can be sold.
CreatedTime Datetime Time at which the item was created.
ImageName String Name of the image.
ImageType String MIME type or format of the item's image.
IsLinkedWithZohoCRM Boolean Indicates if the Item is linked with Zoho CRM.
LastModifiedTime Datetime The time of last modification of the item.
ProductType String Type of the product.
PurchaseAccountId String

BankAccounts.AccountId

Account Id of purchase items.
PurchaseAccountName String Account name of purchase items.
PurchaseDescription String Description of purchase items.
PurchaseRate Decimal Rate of purchase items.
Source String Source of the item.
Tags String Details of tags related to items.
TrackInventory Boolean Check if the item can be tracked
Unit String Number of quantity of item.
ZcrmProductId String ZCRM Product Id of the item.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
AccountId String Id of the Bank Account to which the item has to be associated with.

CData Python Connector for Zoho Books

ItemWarehouses

Retrieves warehouse details related to items.

git a

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the ItemId column, which supports '=,IN' comparisons.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM ItemWarehouses WHERE ItemId = '3255827000000081058'

    SELECT * FROM ItemWarehouses WHERE ItemId IN ('3255827000000081058', '3255827000000102354')

Columns

Name Type References SupportedOperators Description
WarehouseId Long The Warehouse Id
ItemId String

Items.ItemId

The Id of the item.
IsPrimary Boolean Indicates whether the item is primary.
Status String The Status of the item. It can be active or inactive
WarehouseActualAvailableStock String The Warehouse Actual Available Stock
WarehouseAvailableStock String The Warehouse Available Stock
WarehouseName String The Warehouse Name
StockOnHand String The Current available stock in your warehouse.

CData Python Connector for Zoho Books

JournalLineItems

Retrieves list of line items of a journal.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following column and operator:

  • JournalId supports the '=' and IN operators.

NOTE: JournalId is required to query JournalLineItems.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM JournalLineItems WHERE JournalId = '1894553000000085774'
	SELECT * FROM JournalLineItems WHERE JournalId IN (SELECT JournalId FROM Journals)
	SELECT * FROM JournalLineItems WHERE JournalId IN ('1894553000000085774','1894553000000085775')

Columns

Name Type References SupportedOperators Description
LineId [KEY] String Id of line in journal.
JournalId String

Journals.JournalId

Id of journal.
AccountId String

BankAccounts.AccountId

Id of the Bank Account.
AccountName String Name of the account.
Amount Decimal Amount of the journal line items.
BcyAmount Decimal Amount of base currency.
CustomerId String

Contacts.ContactId

Id of the customer or vendor.
CustomerName String Name of the customer or vendor.
DebitOrCredit String Indicates if line item is Credit or Debit.
Description String Description of the journal line item.
Tags String Details of tags related to journal line items.
TaxAuthorityId String

Taxes.TaxAuthorityId

Authority Id for tax.
TaxExemptionId String

BankRules.TaxExemptionId

Id of exemption in tax.
TaxExemptionType String Type of exemption in tax.
TaxId String

Taxes.TaxId

Id of tax.
TaxName String Name of the tax.
TaxPercentage Integer Percentage applied for tax.
TaxType String Type of tax.
ItemOrder Integer Order of the item
LineItemTaxes String Line Taxes of Item
ProjectId String

Projects.ProjectId

Id of a project. This field will be populated with a value only when the Journal Id is specified.
ProjectName String Name of a project. This field will be populated with a value only when the Journal Id is specified.

CData Python Connector for Zoho Books

JournalReport

Generated schema file.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • TransactionDate supports the '=' comparison.
  • ToDate supports the '=' comparison.
  • FromDate supports the '=' comparison.
  • CashBased supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM JournalReport WHERE TransactionDate = 'Today'

    SELECT * FROM JournalReport WHERE ToDate = '2022-10-31'

    SELECT * FROM JournalReport WHERE FromDate = '2022-10-10' AND ToDate = '2022-10-31'

    SELECT * FROM JournalReport WHERE CashBased = True

Columns

Name Type References SupportedOperators Description
AccountTransactionsAccountId String Account Transactions Account Id
AccountTransactionsAccountName String Account Transactions Account Name
AccountTransactionsDebitAmount String Account Transactions Debit Amount
AccountTransactionsCreditAmount String Account Transactions Credit Amount
ContactId String Contact Id
ContactName String Contact Name
CreditFcyTotal Integer CreditFcyTotal
CreditTotal Integer CreditTotal
Date String Date
DebitFcyTotal Integer Debit FcyTotal
DebitTotal Integer Debit Total
EntityId String Entity Id
TransactionId String Transaction Id
TransactionNumber String Transaction Number
TransactionType String Transaction Type

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
CashBased Boolean Balance Type Total
TransactionDate String Filter transaction by any transaction date.

The allowed values are Today, ThisWeek, ThisMonth, ThisQuarter, ThisYear, PreviousDay, PreviousWeek, PreviousMonth, PreviousQuarter, PreviousYear, CustomDate.

ToDate Date To Date
FromDate Date From Date

CData Python Connector for Zoho Books

MovementOfEquityReport

Generated schema file.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • TransactionDate supports the '=' comparison.
  • ToDate supports the '=' comparison.
  • FromDate supports the '=' comparison.
  • CashBased supports the '=' comparison.
  • ProjectId supports the 'IN, Not In, IS NULL, IS Not NULL' comparisons.
  • AccountType supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM MovementOfEquityReport WHERE TransactionDate = 'Today'

    SELECT * FROM MovementOfEquityReport WHERE ToDate = '2022-10-31'

    SELECT * FROM MovementOfEquityReport WHERE FromDate = '2022-10-10' AND ToDate = '2022-10-31'

    SELECT * FROM MovementOfEquityReport WHERE AccountType = 'all'

    SELECT * FROM MovementOfEquityReport WHERE ProjectId IN ('2346789876554')

Columns

Name Type References SupportedOperators Description
Label String Label
LabelTotal String Label Total
SubLabelTotal String Sub Label Total
AccountName String Account Name
AccountCode String Account Code
AccountId String Account Id
AccountTotal String Account Total
SubLabel String Sub Label

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
TransactionDate String Filter transaction by any transaction date.

The allowed values are Today, ThisWeek, ThisMonth, ThisQuarter, ThisYear, PreviousDay, PreviousWeek, PreviousMonth, PreviousQuarter, PreviousYear, CustomDate.

ToDate Date To Date
FromDate Date From Date
CashBased Boolean Balance Type Total
AccountType String Balance Type Total

The allowed values are all, has_transactions, non_zero.

ProjectId String

CData Python Connector for Zoho Books

OpeningBalanceAccounts

Retrieves list of accounts of opening balance.

Table Specific Information

Select

No filters are supported server-side for this table. All criteria are handled client-side within the connector.

Columns

Name Type References SupportedOperators Description
AccountId [KEY] String

BankAccounts.AccountId

Id of an account.
AccountName String Name of an account.
AccountSplitId String Split Id of an account.
AccountType String Type of the account.
BcyAmount Decimal Base currency of the amount.
CurrencyCode String Code of currency.
CurrencyId String

Currencies.CurrencyId

Id of a currency.
DebitOrCredit String Type of mode the opening balance is.
ExchangeRate Decimal Exchange rate of the currency.
ProductId String ID of the product.
ProductName String Name of the product.
ProductStock Integer Stock of the product.
ProductStockRate Integer Stock rate of the product.

CData Python Connector for Zoho Books

OpeningBalanceTransactionSummaries

Get transaction summaries of opening balance.

Table Specific Information

Select

No filters are supported server-side for this table. All criteria will be handled client-side within the connector.

Columns

Name Type References SupportedOperators Description
EntityType String Type of entity of opening balance transaction summaries.
Count Integer Count of transaction summary.

CData Python Connector for Zoho Books

Organizations

Retrieves list of organizations.

Table Specific Information

Select

No filters are supported server-side for this table. All criteria will be handled client-side within the connector.

Columns

Name Type References SupportedOperators Description
OrganizationId [KEY] String ID of an organization.
AccountCreatedDate Date Date when the account was created.
CanChangeTimezone Boolean Check if the organization can change the timezone.
CanShowDocumentTab Boolean Check if the organization can show a document tab.
CanSignInvoice Boolean Check if an organization can sign invoice.
ContactName String Display Name of the contact. Max-length [200]
Country String Country of the organization.
CountryCode String Country code of the organization.
CurrencyFormat String Format of the currency used in the organization.
CurrencyCode String Currency code of the customer's currency.
CurrencyId String

Currencies.CurrencyId

Currency ID of the customer's currency.
CurrencySymbol String Symbol of currency used in the organization.
DigitalSignatureMode String Mode of digital signature.
Email String Email address of an organization.
FieldSeparator String Character which is used as a field separator.
FiscalYearStartMonth Integer Start month of the fiscal year in an organization.
IsBillOfSupplyEnabled Boolean Check if the bill of the supply is enabled in an organization..
IsDefaultOrg Boolean Check if this is a default organization.
IsDesignatedZone Boolean Check if there is a designated zone in an organization.
IsDsignRequired Boolean Check if the digital signature is required in the organization.
IsExportWithPaymentEnabled Boolean Check if export with the payment enabled in the organization.
IsGstIndiaVersion Boolean Check if the organization has GST version on India.
IsHsnOrSacEnabled Boolean Check if the organization is enabled with HSN or SAC
IsInternationalTradeEnabled Boolean Check if international trade is enabled in an organization.
IsInventoryEnabled Boolean Check if inventory is available in an organization.
IsInvoicePmtTdsAllowed Boolean Check if invoice payment TDS allowing in the organization
IsPoEnabled Boolean Check if probationary officer is enabled in the organization.
IsQuickSetupCompleted Boolean Check if quick setup is completed for the organization.
IsRegisteredForCompositeScheme Boolean Check if the organization is registered for composite scheme.
IsRegisteredForGst Boolean Check if the organization is registered for GST.
IsRegisteredForTax Boolean Check if the organization is registered for tax.
IsSalesInclusiveTaxEnabled Boolean Check if sales inclusive tas is enabled in the organization.
IsSalesReverseChargeEnabled Boolean Check if sales reverse charge is enabled in the organization.
IsScanPreferenceEnabled Boolean Check if scan preference is enabled in the organization.
IsSearch360Enabled Boolean Check if search 360 is enabled in the organization.
IsSkuEnabled Boolean Check if stock keeping unit is enabled in the organization.
IsTaxRegistered Boolean Check if the tax is registered in the organization.
IsTrialExpired Boolean Check if the trial is expired or not for a particular organization.
IsTrialExtended Boolean Check if the trial is extended or not for a particular organization.
IsZiedition Boolean Nodes used for Internal Usage for Zoho Books.
IsOrgActive Boolean Check if Organization is active.
IsOrgNotSupported Boolean Check if Organization is not supported.
Mode String Mode of an organization.
OrgAction String Action of the organization.
OrgCreatedAppSource Integer Source of the app where organization was created.
OrgSettings Boolean Settings of organization.
PartnersDomain String Domain of partners.
PlanName String Name of the plan.
PlanPeriod String Period of the plan.
PlanType Integer Type of a plan.
SalesTaxType String Type of sales tax.
Source Integer Source of the organizations
StateCode String Code of state.
TaxGroupEnabled Boolean Check if the tax group is enabled in the organization.
ZiMigrationStatus Integer Nodes used for Internal Usage for Zoho Books.
ZiZbClient Integer Nodes used for Internal Usage for Zoho Books.
ZiZbEdition Integer Nodes used for Internal Usage for Zoho Books.
AppList String List of joined/active applications for the organization, as a JSON array.
IsFreeZone Boolean Indicates whether the organization is in a free trade zone.
IsSoloOrg Boolean Indicates if the organization is a solo (single user) organization.
IsUserAccountant Boolean Flag indicating if the current user is an accountant.
IsUserDsignMandatory Boolean Indicates if the user’s digital signature is mandatory.
IsUserLastAdmin Boolean Indicates if the user is the last admin of the organization.
IsUserSuperAdmin Boolean Indicates if the user is a super admin of the organization.
IsZPayrollGrid Boolean Indicates if the organization is using Zoho Payroll Grid.
LanguageCode String Language code configured for the organization (e.g., 'en').
Name String Name of the organization.
OrgJoinedAppList String List of applications the organization has joined, as a JSON array.
OrgType String Type of the organization (e.g., 'live').
Phone String Primary phone number of the organization.
PricePrecision Integer Number of decimal places used for pricing in the organization.
State String State or region of the organization.
TimeZoneFormatted String Formatted string of the organization's time zone.
TimeZone String Time zone identifier of the organization (e.g., 'Asia/Calcutta').
UserStatusFormatted String Formatted string of the user's status (e.g., 'Active').
UserStatus Integer User's status code.
Version String Version code or identifier of the organization's Zoho Books configuration (e.g., 'india').
ZohoOneOrg String Zoho One organization identifier or flag if applicable.

CData Python Connector for Zoho Books

PaymentsReceivedReport

Generated schema file.

Columns

Name Type References SupportedOperators Description
Accountid String Account id
Accountname String Account name
Amount Integer Amount
AppliedDate Date Applied Date
AppliedInvoiceAmount String Applied Invoice Amount
AppliedInvoiceBcyAmount String Applied Invoice BcyAmount
AppliedInvoices String Applied Invoices
BcyBankCharge Integer BcyBankCharge
BcytotalExcludingTdsDeduction Integer Bcytotal ExcludingTdsDeduction
ContactBillingAttention String Contact Billing Attention
ContactBillingCity String Contact Billing City
ContactBillingCountry String Contact Billing Country
ContactBillingFax String Contact Billing Fax
ContactBillingState String Contact Billing State
ContactBillingStreet1 String Contact Billing Street1
ContactBillingStreet2 String Contact Billing Street2
ContactBillingZipcode String Contact Billing Zipcode
ContactCompanyName String Contact Company Name
ContactCreatedBy String Contact Created By
ContactCreatedTime Datetime Contact Created Time
ContactcreditLimit Integer Contact credit Limit
ContactcustomerSubType String Contact customer SubType
ContactDepartment String Contact Department
ContactDesignation String Contact Designation
ContactEmail String Contact Email
ContactFacebook String Contact Facebook
ContactFirstName String Contact First Name
ContactLastModifiedTime Datetime Contact Last ModifiedTime
ContactLastName String Contact Last Name
ContactMobilePhone String Contact Mobile Phone
ContactNotes String Contact Notes
ContactOutstandingReceivableAmount Integer Contact Outstanding ReceivableAmount
ContactOutstandingReceivableAmountBcy Integer Contact Outstanding ReceivableAmountBcy
ContactPaymentTerms String Contact Payment Terms
ContactPhone String Contact Phone
ContactShippingAttention String Contact Shipping Attention
ContactShippingCity String Contact Shipping City
ContactShippingCountry String Contact Shipping Country
ContactShippingFax String Contact Shipping Fax
ContactShippingState String Contact Shipping State
ContactShippingStreet1 String Contact Shipping Street1
ContactShippingStreet2 String Contact Shipping Street2
ContactShippingZipcode String Contact Shipping Zipcode
ContactSkype String Contact Skype
ContactStatus String Contact Status
ContactTwitter String Contact Twitter
ContactUnusedCreditsReceivableAmount Integer Contact Unused Credits Receivable Amount
ContactUnusedCreditsReceivableAmountBcy Integer Contact Unused Credits Receivable Amount Bcy
ContactWebsite String Contact Website
CreatedBy String CreatedBy
CreatedTime Datetime CreatedTime
CurrencyCode String CurrencyCode
CustomFields String CustomFields
CustomerName String CustomerName
Description String Description
Documents String Documents
FcyBankCharge Integer Fcy Bank Charge
FcytotalExcludingTdsDeduction Integer Fcy total Excluding TdsDeduction
GatewayTransactionId String GatewayTransactionId
HasAttachment Boolean Has Attachment
InvoiceNumber String Invoice Number
InvoiceNumbers String Invoice Numbers
LastFourDigits String Last Four Digits
LastModifiedTime Datetime Last Modified Time
PaymentId String Payment Id
ProductDescription String Product Description
RefundedAmount Integer Refunded Amount
Retainerinvoiceid String Retainer invoiceid
TaxAccountId String Tax Account Id
TaxAccountName String Tax Account Name
TaxAmountWithheld Integer Tax Amount Withheld
Type String Type
UnusedAmount Integer UnusedAmount
CustomerId String IN, NOT IN Customer Id
Date Date =, >,< Date
PaymentMode String IN, NOT IN Payment Mode

The allowed values are Bank Remittance, Bank Transfer, Cash, Check, Credit Card.

PaymentNumber String =, !=, LIKE, CONTAINS, NOT LIKE, IS NULL, IS NOT NULL Payment Number
AccountIdFilter String IN, NOT IN AccountIdFilter
BcyUnusedAmount Integer =, !=,<,<=, >, >= Bcy Unused Amount
BcyAmount Integer =, !=,<,<=, >, >= Bcy Amount
BcyRefundedAmount Integer =, !=,<, >,<=, >= Bcy Refunded Amount
ReferenceNumber String =, !=, LIKE, NOT LIKE, CONTAINS Reference Number
Branch String Branch associated with the received payment, in JSON format.
PaymentMethod String Payment Method
TxnPostingDate Date Transaction posting date for the payment record, if applicable.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
PaymentType String Transaction

The allowed values are Retainers, Invoices, InvoicePayment, Advance.

PaymentDate String Filter transaction by any transaction date.

The allowed values are Today, ThisWeek, ThisMonth, ThisQuarter, ThisYear, PreviousDay, PreviousWeek, PreviousMonth, PreviousQuarter, PreviousYear, CustomDate.

ToDate Date To Date
FromDate Date From Date

CData Python Connector for Zoho Books

ProductSalesReport

Generated schema file.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators: The rest of the filter is executed client-side in the connector.

  • SoldDate supports the '=' comparison.
  • ToDate supports the '=' comparison.
  • FromDate supports the '=' comparison.
  • ProductCode supports the '= , != , LIKE , NOT LIKE, CONTAINS, IS NULL, IS NOT NULL' comparisons.
  • ItemSku supports the '= , != , LIKE , NOT LIKE, CONTAINS, IS NULL, IS NOT NULL' comparisons.

For example:

    SELECT * FROM ProductSalesReport WHERE SoldDate = 'Today'

    SELECT * FROM ProductSalesReport WHERE ToDate = '2022-10-31'

    SELECT * FROM ProductSalesReport WHERE FromDate = '2022-10-10' AND ToDate = '2022-10-31'

    SELECT * FROM ProductSalesReport WHERE ProductCode LIKE 'bags%'

    SELECT * FROM ProductSalesReport WHERE ItemSku IS NOT NULL

Columns

Name Type References SupportedOperators Description
IsComboProduct Boolean Is Combo Product
ItemCreatedBy String Item Created By
ItemCreatedTime Datetime Item Created Time
ItemDescription String Item Description
ItemItemType String Item Item Type
ItemLastModifiedTime Datetime Item Last Modified Time
ItemProductType String Item Product Type
ItemPurchaseDescription String Item Purchase Description
ItemPurchaseRate Integer Item Purchase Rate
ItemRate Integer Item Rate
ItemStatus String Item Status
ItemUnit String Item Unit
Margin Double Margin
ProductId String Product Id
Profit Integer Profit
QuantitySold Integer Quantity Sold
SalesPrice Integer Sales Price
SalesPricewithTax Integer Sales Price with Tax
Sku String Sku
Unit String Unit
ProductCode String = , != , LIKE , NOT LIKE, CONTAINS, IS NULL, IS NOT NULL Product Code
ItemSku String = , != , LIKE , NOT LIKE, CONTAINS, IS NULL, IS NOT NULL Item Sku

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
SoldDate String Filter transaction by any transaction date.

The allowed values are Today, ThisWeek, ThisMonth, ThisQuarter, ThisYear, PreviousDay, PreviousWeek, PreviousMonth, PreviousQuarter, PreviousYear, CustomDate.

ToDate Date To Date
FromDate Date From Date

CData Python Connector for Zoho Books

ProfitsAndLossesReport

This report summarizes your company's assets, liabilities and equity at a specific point in time

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • TransactionDate supports the '=' comparison.
  • ToDate supports the '=' comparison.
  • FromDate supports the '=' comparison.
  • CashBased supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM ProfitsAndLossesReport WHERE TransactionDate = 'Today'

    SELECT * FROM ProfitsAndLossesReport WHERE ToDate = '2022-10-31'

    SELECT * FROM ProfitsAndLossesReport WHERE FromDate = '2022-10-10' AND ToDate = '2022-10-31'

    SELECT * FROM ProfitsAndLossesReport WHERE CashBased = True

Columns

Name Type References SupportedOperators Description
BalanceTypeName String Balance Type Name
SubBalanceTypeName String Sub Balance Type Name
AccountTransactionTypeName String Account Transaction Type Name
AccountTransactionTotal Decimal Account Transaction Total
BalanceTypeTotal Decimal Balance Type Total
SubBalanceTypeTotal Decimal Sub Balance Type Total

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
CashBased Boolean It has value either true or false
TransactionDate String Filter transaction by any transaction date.

The allowed values are Today, ThisWeek, ThisMonth, ThisQuarter, ThisYear, PreviousDay, PreviousWeek, PreviousMonth, PreviousQuarter, PreviousYear, CustomDate.

ToDate Date To Date
FromDate Date From Date

CData Python Connector for Zoho Books

ProjectInvoices

Retrieves list of invoices created for a project.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following column and operator:

  • ProjectId supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM ProjectInvoices WHERE ProjectId = '1894553000000012367'

Columns

Name Type References SupportedOperators Description
InvoiceId [KEY] String

Invoices.InvoiceId

Id of an invoice.
InvoiceNumber String Number of an invoice.
ProjectId String

Projects.ProjectId

Id of a project.
Balance Decimal Total amount available in invoice.
CreatedTime Datetime Time at which the project invoice was created.
CustomerId String

Contacts.ContactId

Id of the customer or vendor.
CustomerName String Name of the customer or vendor.
Date Date Date of project invoice.
DueDate Date Delivery date of the project invoice.
ReferenceNumber String Reference number of project invoice.
Status String Status of the project invoice
Total Decimal Total of project invoices.

CData Python Connector for Zoho Books

ProjectPerformanceSummaryReport

Generated schema file.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • BillingType supports the '=, !=' comparisons.
  • ProjectId supports the 'IN, NOT IN' comparisons.
  • CustomerId supports the 'IN, NOT IN' comparisons.
  • Status supports the '=' comparison.

The rest of the filter is executed client-side in the connector

For example:

	SELECT * FROM ProjectPerformanceSummaryReport WHERE Status = 'active'
	
	SELECT * FROM ProjectPerformanceSummaryReport WHERE CustomerId IN ('3285934000000104002')
	
	SELECT * FROM ProjectPerformanceSummaryReport WHERE ProjectId IN ('3285934000000312337')
	
	SELECT * FROM ProjectPerformanceSummaryReport WHERE BillingType != 'based_on_staff_hours'

Columns

Name Type References SupportedOperators Description
ActualCostAmount Integer Actual Cost Amount
ActualRevenueAmountBcy Integer Actual Revenue AmountBcy
ActualRevenueAmountFcy Integer Actual Revenue AmountFcy
BudgetedCostAmount Integer Budgeted Cost Amount
BudgetedRevenueAmount Integer Budgeted Revenue Amount
CustomerName String Customer Name
Description String Description
DifferenceInCostAmount Integer Difference In Cost Amount
DifferenceInCostPercentage Integer Difference In Cost Percentage
DifferenceInRevenueAmount Integer Difference In Revenue Amount
DifferenceInRevenuePercentage Integer Difference In Revenue Percentage
ProfitAmount Integer Profit Amount
ProfitMargin String Profit Margin
ProfitPercentage String Profit Percentage
ProjectName String Project Name
Status String = Status

The allowed values are active, inactive.

ProjectId String IN, NOT IN Project Id
CustomerId String IN, NOT IN Customer Id
BillingType String =, != Billing Type

The allowed values are based_on_staff_hours, based_on_project_hours, fixed_cost_for_project, based_on_task_hours.

CurrencyCode String CurrencyCode

CData Python Connector for Zoho Books

ProjectUsers

Retrieves list of users associated with a project. Also, get details of a user in project.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • ProjectId supports the '=' comparison.
  • UserId supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM ProjectUsers WHERE ProjectId = '1894553000000072363' AND UserId = '1894553000000056001'

Columns

Name Type References SupportedOperators Description
ProjectId String

Projects.ProjectId

Id of a project.
UserId [KEY] String

Users.UserId

Id of the user.
IsCurrentUser Boolean Check if it is a current user.
UserName String Username of the project users.
Email String Email Id of user.
UserRole String Role of the user in project.
RoleId String

Users.RoleId

Id of the role.
Status String Status of the project user.
Rate Decimal Hourly rate for a task.
BudgetHours Integer Total number of hours alloted to the user for the project.
BudgetHoursInTime String Time of total number of hours alloted to the user for the project.
TotalHours String Total number of hours to be spent in project.
BilledHours String Total number of billed hours to be spent in project.
UnBilledHours String Total number of unbilled hours spent in project.
BillableHours String Total number of billable hours spent in project.
NonBillableHours String Total number of non billable hours spent in project.
StaffRole String Role of staff in project.
StaffStatus String Status of staff in project.

CData Python Connector for Zoho Books

PurchaseOrderDocuments

Get the attachments associated with Purchase Orders.

Table Specific Information

Select

The connector will use the Zoho Books API to process WHERE clause conditions built with the following column and operator. The rest of the filter is executed client side within the connector.

  • PurchaseorderId supports the '=,IN' comparisons.
For example:
    SELECT * FROM PurchaseOrderDocuments WHERE PurchaseorderId = '3255827000000101306'

    SELECT * FROM PurchaseOrderDocuments WHERE PurchaseorderId IN ('3255827000000101306', '3255827000000101223')

Columns

Name Type References SupportedOperators Description
DocumentId [KEY] String Id of Document.
PurchaseOrderId String

PurchaseOrders.PurchaseorderId

= Id of PurchaseOrder.
FileName String Name of the document attached.
AttachmentOrder Integer Integer denoting the order of attachment.
CanSendInMail Boolean Boolean denoting if the document can be send in mail or not.
FileSize String Size of the file.
FileType String Type of the file.
Source String Source from where file was uploaded.
UploadedBy String The name of the contact who uploaded the file.
UploadedTime Datetime The date and time when file was uploaded.

CData Python Connector for Zoho Books

PurchaseOrderLineItems

Get the details of line items of purchase orders.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following column and operator:

  • PurchaseorderId supports the '=' and IN operators.

NOTE: PurchaseorderId is required to query PurchaseOrderLineItems.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM PurchaseOrderLineItems WHERE PurchaseorderId = '1894553000000087078'
	SELECT * FROM PurchaseOrderLineItems WHERE PurchaseOrderId IN (SELECT PurchaseOrderId FROM PurchaseOrders)
	SELECT * FROM PurchaseOrderLineItems WHERE PurchaseOrderId IN ('1894553000000087078','1894553000000087079')

Columns

Name Type References SupportedOperators Description
LineItemId [KEY] String Id of line item.
PurchaseorderId String

PurchaseOrders.PurchaseorderId

Id of purchase order.
ItemId String

Items.ItemId

Id of an item.
ItemOrder Integer Order of an item.
ItemTotal Decimal total number of item in purchase order.
ItemType String Types of item.
AccountId String

BankAccounts.AccountId

Id of the Bank Account.
AccountName String Name of the account.
BcyRate Decimal Rate of base currency.
CustomFields String Custom Fields added for the line item
Description String Description of the purchase order line item.
Discount Double Discount to be applied on purchase order line item.
Name String Name of the line item.
ProjectId String

Projects.ProjectId

Id of the project.
Quantity Double Total number of items added in purchase order.
QuantityCancelled Double Total number of cancelled quantity added in purchase order.
Rate Decimal Rate of the line item.
Tags String Details of tags related to purchase order line items.
TaxId String

Taxes.TaxId

Id of tax.
TaxName String Name of the tax.
TaxPercentage Integer Percentage applied for tax.
TaxType String Type of tax.
Unit String Number of quantity.
SKU String The SKU of the Line Item.

CData Python Connector for Zoho Books

PurchaseOrders

Retrieves list of all purchase orders.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • Date supports the '=' comparison.
  • LastModifiedTime supports the '=' comparison.
  • PurchaseorderNumber supports the '=' comparison.
  • ReferenceNumber supports the '=' comparison.
  • Status supports the '=' comparison.
  • Total supports the '=,<,<=,>,>=' comparisons.
  • VendorId supports the '=' comparison.
  • VendorName supports the '=' comparison.
  • PurchaseOrderFilter supports the '=' comparison.
  • ItemId supports the '=' comparison.
  • ItemDescription supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM PurchaseOrders WHERE VendorId = 1894553000000077963

    SELECT * FROM PurchaseOrders WHERE Total < 300

    SELECT * FROM PurchaseOrders WHERE CONTAINS (PurchaseorderNumber, 'PO-')

Columns

Name Type References SupportedOperators Description
PurchaseorderId [KEY] String Id of a purchase order.
BilledStatus String Billed status of a purchase order.
ClientViewedTime Datetime Last time when the client has viewed purchase order.
ColorCode String Color code of this purchase order.
CompanyName String Name of the company.
CreatedTime Datetime Time at which the purchase order was created.
CurrencyCode String Currency code of the customer's currency.
CurrencyId String

Currencies.CurrencyId

Currency Id of the customer's currency.
CurrentSubStatus String Current sub status of a purchase order.
CurrentSubStatusId String Current sub status Id of a purchase order.
Date Date The date the purchase order is created.
DeliveryDate Date Delivery date of the order.
HasAttachment Boolean Check if the purchase order has attachment.
IsDropShipment Boolean Check if it has drop shipment.
IsViewedByClient Boolean Check if the purchase order is viewed by client.
LastModifiedTime Datetime Last modified time of a purchase order.
OrderStatus String Status of purchase order.
PricePrecision String The precision for the price.
PurchaseorderNumber String Number of the purchase order.
QuantityYetToReceive Decimal Number of quantity yet to receive from purchase order.
ReferenceNumber String Reference number of a purchase order.
Status String Status of a purchase order.

The allowed values are draft, open, billed, cancelled.

Total Decimal =,<,<=,>,>= Total of purchase orders. Search by purchase order total.
VendorId String Id of the vendor the purchase orders has been made. Search by vendor id.
VendorName String Name of the vendor the purchase orders has been made. Search by vendor name.
ExpectedDeliveryDate Date Expected delivery date of purchased product.
DeliveryDays String Readable delivery days string
DueByDays String Readable string specifying the days left or overdue until due, if available.
DueInDays Integer Number of days remaining before purchase order is due.
QuantityMarkedAsReceived Decimal Quantity that has been marked as received in the purchase order.
Receives String Array of receiving records for this purchase order, in JSON format.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
PurchaseOrderFilter String Filter purchase order by any status.

The allowed values are Status.All, Status.Draft, Status.Open, Status.Billed, Status.Cancelled.

ItemId String Id of an item.
ItemDescription String Description of an item.

CData Python Connector for Zoho Books

PurchaseOrdersByVendorReport

Generated schema file.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • PODate supports the '=' comparison.
  • ToDate supports the '=' comparison.
  • FromDate supports the '=' comparison.
  • VendorId supports the 'IN, NOT IN' comparisons.
  • Status supports the 'IN' comparison.

The rest of the filter is executed client-side in the connector.

For example:

SELECT * FROM PurchaseOrdersByVendorReport WHERE PODate = 'Today'

SELECT * FROM PurchaseOrdersByVendorReport WHERE ToDate = '2022-10-31'

SELECT * FROM PurchaseOrdersByVendorReport WHERE FromDate = '2022-10-10' AND ToDate = '2022-10-31'

SELECT * FROM PurchaseOrdersByVendorReport WHERE Status IN ('draft')

SELECT * FROM PurchaseOrdersByVendorReport WHERE VendorId IN ('3285934000000104023')

Columns

Name Type References SupportedOperators Description
Amount Integer Amount
Count Integer Count
FcyAmount Integer Fcy Amount
VendorCompanyName String Vendor CompanyName
VendorCreatedBy String Vendor Created By
VendorCreatedTime Datetime Vendor Created Time
VendorDepartment String Vendor Department
VendorDesignation String Vendor Designation
VendorEmail String Vendor Email
VendorFacebook String Vendor Facebook
VendorFirstName String Vendor First Name
VendorLastModifiedTime Datetime Vendor Last ModifiedTime
VendorLastName String Vendor Last Name
VendorMobilePhone String Vendor Mobile Phone
VendorNotes String Vendor Notes
VendorOutstandingPayableAmount Integer Vendor Outstanding Payable Amount
VendorOutstandingPayableAmountBcy Integer Vendor Outstanding Payable Amount Bcy
VendorPaymentTerms String Vendor Payment Terms
VendorPhone String Vendor Phone
VendorSkype String Vendor Skype
VendorStatus String Vendor Status
VendorTwitter String Vendor Twitter
VendorUnusedCreditsPayableAmount Integer Vendor Unused Credits Payable Amount
VendorUnusedCreditsPayableAmountBcy Integer Vendor Unused Credits Payable Amount Bcy
VendorWebsite String Vendor Website
VendorName String Vendor Name
VendorId String IN, NOT IN Vendor Id
Branch String Branch associated with the purchase orders by vendor, in JSON format.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
PODate String Filter transaction by any purchase order date.

The allowed values are Today, ThisWeek, ThisMonth, ThisQuarter, ThisYear, PreviousDay, PreviousWeek, PreviousMonth, PreviousQuarter, PreviousYear and CustomDate.

ToDate Date To Date
FromDate Date From Date
Status String Status

The allowed values are draft, pending_approval, approval_overdue, approved, rejected, open, billed, billed_not_received, cancelled, partially_billed, issued, partially_received, received, received_not_billed, manually_received, drop_shipped, closed, accepted, signed.

CData Python Connector for Zoho Books

PurchaseOrderTemplates

Get all purchase order pdf templates.

Table Specific Information

Select

The connector uses the Zoho Books API to retrieve the list of all PDF templates associated with Purchase Orders. All filtering is executed client-side in the connector.

For example:

  SELECT * FROM PurchaseOrderTemplates;

Columns

Name Type References SupportedOperators Description
TemplateId [KEY] String Id of the estimate template
TemplateName String Name of the estimate template
TemplateType String Type of the estimate templates

CData Python Connector for Zoho Books

RecurringBillLineItems

Get the details of a line items of bills.

Columns

Name Type References SupportedOperators Description
LineItemId [KEY] String Id of line item.
RecurringBillId String

Bills.BillId

Id of a Bill.
AccountId String

BankAccounts.AccountId

Id of the Bank Account.
AccountName String Name of the account.
BcyRate Decimal Rate of Base Currency.
CustomFields String Custom fields
CustomerId String

Contacts.ContactId

Id of the customer or vendor.
CustomerName String Name of the customer or vendor.
Description String Description of the bill line item.
Discount Double Discount to be applied on the bill line item.
HeaderId String Id of the Bank Account.
HeaderName String Id of the Bank Account.
ImageDocumentId String Id of the image document.
IsBillable Boolean Check if the bill line items is billable.
ItemId String

Items.ItemId

Id of an item.
ItemOrder Integer Order of an item.
ItemTotal Decimal Total items.
ItemType String Type of item.
Name String Name of the bill line item.
PricebookId String Id of pricebook.
ProjectId String

Projects.ProjectId

Id of project.
ProjectName String Name of the project.
Quantity Decimal Quantity of line item.
Rate Decimal Rate of the line item.
TaxId String

Taxes.TaxId

Id of tax.
TaxName String Name of tax.
TaxPercentage Integer Percentage applied for tax.
TaxType String Type of tax.
Unit String Number of quantity.
SKU String The SKU of the Line Item.

CData Python Connector for Zoho Books

RecurringBills

To list, add, update and delete details of a bill.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • VendorId supports the '=' comparison.
  • VendorName supports the '=, CONTAINS' comparisons.
  • RecurrenceName supports the '=' comparison.
  • Status supports the '=' comparison.
  • StartDate supports the '=,<,>' comparisons.
  • EndDate supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM RecurringBills WHERE vendorid = '3255827000000081003'

    SELECT * FROM RecurringBills WHERE CONTAINS (vendorname, 'c')

    SELECT * FROM RecurringBills WHERE startdate > '2023-03-3'

Columns

Name Type References SupportedOperators Description
RecurringBillId [KEY] String Id of a Bill.
VendorId String = Id of the vendor the bill has been made.
VendorName String = Name of the vendor the bill has been made.
Status String = Status of the bill.
RecurrenceName String = Frequency at which recurring bill will be sent.
RecurrenceFrequency String Search recurring bills by recurrence number.
RepeatEvery Integer Integer value denoting the frequency of bill.
StartDate Date =,>,< Date when bill was created.
LastSentDate Date Date when recurring bill was last sent.
NextBillDate Date Date when bill will be sent next.
EndDate Date = Date when the payment is expected.
CreatedTime Datetime Time at which the bill was created.
LastModifiedTime Datetime The time of last modification of the bill.
Total Integer Total of the bill.

CData Python Connector for Zoho Books

RecurringExpenses

Retrieves list of all the Expenses.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • AccountName supports the '=' comparison.
  • CustomerName supports the '=' comparison.
  • LastCreatedDate supports the '=,<,>' comparisons.
  • NextExpenseDate supports the '=,<,>' comparisons.
  • PaidThroughAccountName supports the '=' comparison.
  • RecurrenceName supports the '=' comparison.
  • Status supports the '=' comparison.
  • CustomerId supports the '=' comparison.
  • AccountId supports the '=' comparison.
  • Amount supports the '=,<,<=,>,>=' comparisons.
  • RecurringExpenseFilter supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM RecurringExpenses WHERE Amount = 500 AND PaidThroughAccountName = 'Petty Cash' AND RecurrenceName = 'Vehicle Rent'

    SELECT * FROM RecurringExpenses WHERE LastCreatedDate > '2017-07-16'

Columns

Name Type References SupportedOperators Description
RecurringExpenseId [KEY] String Id of recurring expense.
AccountName String Account name of an expense.
CreatedTime Datetime Time at which the recurring expense was created.
CurrencyCode String Currency code of the customer's currency.
CurrencyId String

Currencies.CurrencyId

Currency Id of the customer's currency.
CustomerName String Name of the customer.
Description String Description of the recurring expense.
IsBillable Boolean Check if recurring expense is billable or not.
LastCreatedDate Date =,<,> Recurring expenses date on when last expense was generated.
LastModifiedTime Datetime The time of last modification of the recurring expense.
NextExpenseDate Date =,<,> Recurring expenses date on which next expense will be generated.
PaidThroughAccountName String Name of the account from which expenses was paid.
RecurrenceName String Name of the recurrence.
Status String Status of a recurring expenses.

The allowed values are active, stopped, expired.

Total Decimal Total of recurring expenses.
RecurrenceFrequency String Frequency of a recurrence.
RepeatEvery Integer Recurrence time of an expense.
VendorName String Name of the vendor the recurring expense has been made.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
CustomerId String Id of a customer.
AccountId String Id of the Bank Account.
Amount Decimal Amount of a recurring expenses.
RecurringExpenseFilter String Filter expenses by expense status.

The allowed values are Status.All, Status.Active, Status.Expired, Status.Stopped.

CData Python Connector for Zoho Books

RecurringInvoiceLineItems

Get the details of line items of a recurring invoice.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following column and operator:

  • RecurringInvoiceId supports the '=' and IN operators.

NOTE: RecurringInvoiceId is required to query RecurringInvoiceLineItems.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM RecurringInvoiceLineItems WHERE RecurringInvoiceId = '1895453000000042244'
	SELECT * FROM RecurringInvoiceLineItems WHERE RecurringInvoiceId IN (SELECT RecurringInvoiceId FROM RecurringInvoices)
	SELECT * FROM RecurringInvoiceLineItems WHERE RecurringInvoiceId IN ('1895453000000042244','1895453000000042245')

Columns

Name Type References SupportedOperators Description
LineItemId [KEY] String Id of line item.
RecurringInvoiceId String

RecurringInvoices.RecurringInvoiceId

Id of recurring invoice.
ItemId String

Items.ItemId

Id of the item.
ItemOrder Integer Order of the item.
ItemTotal Decimal Total number of item.
Description String Description of the recurring invoice line item.
Discount String Amount of discount applied for items of recurring invoice.
DiscountAmount Decimal Amount of discount.
HeaderId String Id of the header.
HeaderName String Name of the header.
Name String Name of the recurring invoice line item.
ProjectId String

Projects.ProjectId

Id of the project.
Quantity String Total number of item.
Rate Decimal Rate for recurring invoice..
TaxId String

Taxes.TaxId

Id of tax.
TaxName String Name of the tax.
TaxPercentage Integer Percentage applied for tax.
TaxType String Type of tax.
Unit String Total quantity included in recurring invoice items.
SKU String The SKU of the Line Item.

CData Python Connector for Zoho Books

RecurringInvoices

Retrieves list of all recurring invoices.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • RecurrenceName supports the '=' comparison.
  • CustomerId supports the '=' comparison.
  • CustomerName supports the '=' comparison.
  • Status supports the '=' comparison.
  • RecurringInvoiceFilter supports the '=' comparison.
  • LineItemId supports the '=' comparison.
  • TaxId supports the '=' comparison.
  • Notes supports the '=' comparison.
  • ItemId supports the '=' comparison.
  • ItemName supports the '=' comparison.
  • ItemDescription supports the '=' comparison.

The rest of the filter is executed client-side in the connector

For example:

    SELECT * FROM RecurringInvoices WHERE RecurrenceName = 'Office Rent' AND EndDate = '2018-06-21'

    SELECT * FROM RecurringInvoices WHERE ItemName = 'Standard Plan'

Columns

Name Type References SupportedOperators Description
RecurringInvoiceId [KEY] String Id of a recurring invoice.
RecurrenceName String Name of a recurrence.
ChildEntityType String Entity type of a child.
CreatedTime Datetime Time at which the recurring invoice was created.
CustomerId String

Contacts.ContactId

Id of the customer or vendor.
CustomerName String Name of the customer or vendor.
EndDate Date End date for the statement.
LastFourDigits String It store the last four digits of customer's card details.
LastModifiedTime Datetime The time of last modification of the recurring invoice.
LastSentDate Date Date recurring invoice was last sent.
NextInvoiceDate Date Date when recurring invoice will be send next.
RecurrenceFrequency String Frequency of the recurrence.
ReferenceNumber String Reference number of recurring invoice.
StartDate Date Starting date of recurring invoice.
Status String Status of the recurring invoice.

The allowed values are active, stopped, expired.

Total Decimal Total of recurring invoices.
RepeatEvery Integer The period between every recurrency frequency.
SalespersonId String Id of the sales person.
SalespersonName String Name of the sales person.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
RecurringInvoiceFilter String Filter recurring invoice by status.

The allowed values are Status.All, Status.Active, Status.Stopped, Status.Expired.

LineItemId String Id of a line item.
TaxId String Id of tax.
Notes String Notes for this recurring invoice.
ItemId String Id of an item.
ItemName String Name of an item.
ItemDescription String Description of an item.

CData Python Connector for Zoho Books

RecurringSubExpense

Retrieves list of child expenses created from recurring expense.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following column and operator:

  • RecurringExpenseId supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM RecurringSubExpense WHERE RecurringExpenseId = '1801553000000089750'

Columns

Name Type References SupportedOperators Description
RecurringExpenseId [KEY] String

RecurringExpenses.RecurringExpenseId

Sort expenses.
AccountName String Name of the account.
CustomerName String Name of the customer.
Date Date Date of a recurring expense.
ExpenseId String

Expenses.ExpenseId

Id of an expense.
PaidThroughAccountName String Name of the account from which payment was made.
Status String Status of the recurring expense.
Total Decimal Total of child expenses of recurring expenses.
VendorName String Name of the vendor.

CData Python Connector for Zoho Books

ReportsAccountTransactionsDetails

Retrieves the list of inline transactions.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • TransactionDate supports the '=' comparison.
  • ToDate supports the '=' comparison.
  • FromDate supports the '=' comparison.
  • AccountId supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM ReportsAccountTransactionsDetails WHERE TransactionDate = 'Today'

    SELECT * FROM ReportsAccountTransactionsDetails WHERE ToDate = '2022-10-31'

    SELECT * FROM ReportsAccountTransactionsDetails WHERE FromDate = '2022-10-10' AND ToDate = '2022-10-31'

    SELECT * FROM ReportsAccountTransactionsDetails WHERE AccountId = 1055236000000014066

Columns

Name Type References SupportedOperators Description
AccountGroup String Account Group
AccountType String Account Type
AccountId Long = Account Id
AccountName String Account Name
Branch String Branch
ContactId Long

Contacts.ContactId

Contact Id
Credit Decimal Credit
CurrencyCode String Currency Code
Date Date Date
Debit Decimal Debit
EntityNumber String Entity Number
NetAmount String Net Amount
OffsetAccountId Long Offset Account Id
OffsetAccountType String Offset Account Type
ProjectIds Long

Projects.ProjectId

Project Ids
ReferenceNumber String Reference Number
ReferenceTransactionId Long Reference Transaction Id
TransactionDetails String Transaction Details
TransactionType String Transaction Type
TransactionId Long Transaction Id

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
TransactionDate String Transaction Date

The allowed values are Today, ThisWeek, ThisMonth, ThisQuarter, ThisYear, PreviousDay, PreviousWeek, PreviousMonth, PreviousQuarter, PreviousYear and CustomDate.

ToDate Date To Date
FromDate Date From Date

CData Python Connector for Zoho Books

RetainerInvoiceDocuments

Get the attachments associated with retainer invoices.

Table Specific Information

Select

The connector will use the Zoho Books API to process WHERE clause conditions built with the following column and operator. The rest of the filter is executed client side within the connector.

  • RetainerInvoiceId supports the '=,IN' comparisons.
For example:
    SELECT * FROM RetainerInvoiceDocuments WHERE RetainerInvoiceId = '3255827000000101306'

    SELECT * FROM RetainerInvoiceDocuments WHERE RetainerInvoiceId IN ('3255827000000101306', '3255827000000101223')

Columns

Name Type References SupportedOperators Description
DocumentId [KEY] String Id of Document.
RetainerInvoiceId String

RetainerInvoices.RetainerInvoiceId

= Id of a retainer invoice.
FileName String Name of the document attached.
AttachmentOrder Integer Integer denoting the order of attachment.
CanSendInMail Boolean Boolean denoting if the document should be send in mail or not.
FileSize String Size of the file.
FileType String Type of the file.
Source String Source from where file was uploaded.
UploadedBy String The name of the contact who uploaded the file.
UploadedTime Datetime The date and time when file was uploaded.

CData Python Connector for Zoho Books

RetainerInvoiceLineItems

Retrieves detail of line items of retainer invoices.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following column and operator:

  • RetainerInvoiceId supports the '=' and IN operators.

NOTE: RetainerInvoiceId is required to query RetainerInvoiceLineItems.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM RetainerInvoiceLineItems WHERE RetainerInvoiceId = '1894663000000085023'
	SELECT * FROM RetainerInvoiceLineItems WHERE RetainerInvoiceId IN (SELECT RetainerInvoiceId FROM RetainerInvoices)
	SELECT * FROM RetainerInvoiceLineItems WHERE RetainerInvoiceId IN ('1894663000000085023','1894663000000085024')

Columns

Name Type References SupportedOperators Description
RetainerInvoiceId String

RetainerInvoices.RetainerInvoiceId

Id of a retainer invoice.
LineItemId [KEY] String Id of line item.
AccountId String

BankAccounts.AccountId

Id of the Bank Account.
BcyRate Decimal Rate of Base Currency.
Description String Description of the retainer invoice line item.
ItemOrder Integer Order of items.
ItemTotal Decimal Total number of items in retainer invoice.
Rate Decimal Rate of the line item.
TaxId String

Taxes.TaxId

Id of tax.
TaxName String Name of the tax.
TaxPercentage Integer Percentage applied for tax.
TaxType String Type of tax.
LineItemTaxes String Line Item tax for the invoice

CData Python Connector for Zoho Books

RetainerInvoicePayments

Get the list of payments made for a retainer invoices.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following column and operator:

  • RetainerInvoiceId supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM RetainerInvoicePayments WHERE RetainerInvoiceId = '1894663000000085023'

Columns

Name Type References SupportedOperators Description
PaymentId [KEY] String Id of a payment.
RetainerInvoiceId String

RetainerInvoices.RetainerInvoiceId

Id of a retainer invoice.
PaymentMode String Mode through which payment is made.
ReferenceNumber Currency Reference number of retainer invoice payment.
Amount Integer Amount of the retainer invoice payments.
AttachmentName String Name of the attachment.
BankCharges Integer Charges of the bank.
CanSendInMail Boolean Check if the retainer invoice can be send through mail.
CurrencyCode String Currency code of the customer's currency.
CurrencyId String

Currencies.CurrencyId

Currency Id of the customer's currency.
CustomerId String

Contacts.ContactId

Id of the customer or vendor.
CustomerName String Name of the customer or vendor.
Date Date Retainer Invoice date.
Description String Description of the retainer invoice payment.
DiscountAmount Decimal Amount given for discount.
ExchangeRate Decimal Exchange rate given for this retainer invoice.
HtmlString String HTML context of a retainer invoice.
IsClientReviewSettingsEnabled Boolean Check if the client review settings is enabled or not.
IsPaymentDrawnDetailsRequired Boolean Check if the payment drawn details is required.
LastFourDigits String It store the last four digits of customer's card details.
OnlineTransactionId String Id of online transaction.
Orientation String Orientation of the page.
PageHeight String Height of the page.
PageWidth String Width of the page.
RetainerinvceBalance Integer Total amount for retainer invoice.
RetainerInvceDate Date Date for retainer invoice.
RetainerInvceId String

RetainerInvoices.RetainerInvoiceId

Id for a retainer invoice.
RetainerInvceNumber String Number of a retainer invoice.
RetainerInvceTotal Integer Total of retainer invoice.
TaxAmountWithheld Integer Amount withheld for tax.
TemplateId String Id of a template.
TemplateName String Name of a template.
TemplateType String Type of a template.
UnusedAmount Integer Total amount which is unused.

CData Python Connector for Zoho Books

RetainerInvoices

Retrieves list of all retainer invoices.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following column and operator:

  • Status supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM RetainerInvoices WHERE Status = 'All'

Columns

Name Type References SupportedOperators Description
RetainerInvoiceId [KEY] String Id of a retainer invoice.
Balance Decimal Total balance of a retainer invoice.
ClientViewedTime Datetime Time when client viewed the retainer invoice.
ColorCode String Color code of retainer invoice.
CreatedTime Datetime Time at which the retainer invoice was created.
CurrencyCode String Currency code of the customer's currency.
CurrencyId String

Currencies.CurrencyId

Currency Id of the customer's currency.
CurrentSubStatus String Current sub status of a retainer invoice.
CurrentSubStatusId String Current sub status Id of a retainer invoice.
CustomerId String

Contacts.ContactId

Id of the customer or vendor.
CustomerName String Name of the customer or vendor.
Date Date Date of a retainer invoice.
EstimateNumber String Estimate number of retainer invoice.
HasAttachment Boolean Check if the retainer invoice has attachment.
IsEmailed Boolean Check if the retainer invoice is emailed.
IsViewedByClient Boolean Check if the retainer invoice is viewed by client.
LastModifiedTime Datetime The time of last modification of the retainer invoices.
LastPaymentDate Date Date of last payment made to retainer invoice.
ProjectName String Name of the project.
ProjectOrEstimateName String Name of project or estimate.
ReferenceNumber String Reference number of a retainer invoice.
RetainerinvoiceNumber String Total number of retainer invoice.
Status String Status of the retainer invoice

The allowed values are All, Sent, Draft, OverDue, Paid, Void, Unpaid, PartiallyPaid, Viewed, Date.PaymentExpectedDate.

Total Decimal Total of retainer invoices.
AchPaymentInitiated Boolean Indicates if an ACH payment was initiated.

CData Python Connector for Zoho Books

RolePermissions

Get the permissions associated with a role.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • RoleId supports the '=' comparison.

The rest of the filters are executed client-side in the connector.

For example:

    SELECT * FROM RolePermissions WHERE RoleId = '1234';

Columns

Name Type References SupportedOperators Description
RoleId [KEY] String

Roles.Id

Id of the role.
Entity [KEY] String Entity.
RoleName String Name of the role.
DisplayName String Display name of the role.
Description String Description of the role.
Group String Group.
GroupFormatted String GroupFormatted.
EntityFormatted String EntityFormatted.
FullAccess Boolean FullAccess.
ApplySegment Boolean ApplySegment.
AssignOwner Boolean AssignOwner.
CanCreate Boolean CanCreate.
CanDelete Boolean CanCreate.
CanEdit Boolean CanEdit.
CanView Boolean CanView.
VendorBankAccount Boolean VendorBankAccount.
CanApprove Boolean CanApprove.
CanEditLockedRecords Boolean CanEditLockedRecords.
DontAllowExpenseTimesheet Boolean DontAllowExpenseTimesheet.
MorePermissions String MorePermissions.
DependentEntities String DependentEntities.
IsReportNewPermissionFlowEnabled Boolean IsReportNewPermissionFlowEnabled.
ReportPermissions String ReportPermissions.

CData Python Connector for Zoho Books

RoleReportPermissions

Get the report permissions associated with a role.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • RoleId supports the '=' comparison.

The rest of the filters are executed client-side in the connector.

For example:

    SELECT * FROM RoleReportPermissions WHERE RoleId = '1234';

Columns

Name Type References SupportedOperators Description
RoleId String

Roles.Id

Id of the role.
RoleName String Name of the role.
DisplayName String Display name of the role.
Description String Description of the role.
Group String Group.
GroupFormatted String GroupFormatted.
IsReportNewPermissionFlowEnabled Boolean IsReportNewPermissionFlowEnabled.
Entity String Entity.
EntityFormatted String EntityFormatted.
FullAccess Boolean FullAccess.
ReportGroup String ReportGroup.
ReportGroupFormatted String ReportGroupFormatted.
ReportConstant String ReportConstant.
ReportNameFormatted String ReportNameFormatted.
CanAccess Boolean CanAccess.
CanExport Boolean CanExport.
CanSchedule Boolean CanSchedule.
CanShare Boolean CanShare.
ReportFullAccess Boolean ReportFullAccess.
IsExportEnabled Boolean IsExportEnabled.
IsScheduleEnabled Boolean IsScheduleEnabled.
ModuleList String ModuleList.
DependentEntities String DependentEntities.

CData Python Connector for Zoho Books

Roles

Get all roles in an organization.

Table Specific Information

Select

The connector uses the Zoho Books API to get data regarding Roles.

Columns

Name Type References SupportedOperators Description
Id [KEY] String Id of the role.
RoleName String Name of the role.
DisplayName String Display name of the role.
RoleDescription String Description of the role.
AccessType String Access type of the role.
UserActionRequired Boolean Whether user action is required on the role.
IsAccountant Boolean Whether the role is only for accountant users.
IsDefault Boolean Whether the role is one of the pre-defined roles in ZohoBooks.
Status String Status of the role.
StatusFormatted String Formatted status of the role.
IsSegment Boolean IsSegment.
IsVendorSegment Boolean IsVendorSegment.

CData Python Connector for Zoho Books

SalesByCustomerReport

Generated schema file.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • TransactionDate supports the '=' comparison.
  • ToDate supports the '=' comparison.
  • FromDate supports the '=' comparison.
  • CustomerId supports the 'IN, NOT IN' comparisons.
  • EntityList supports the 'IN' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM SalesByCustomerReport WHERE TransactionDate = 'Today'

    SELECT * FROM SalesByCustomerReport WHERE ToDate = '2022-10-31'

    SELECT * FROM SalesByCustomerReport WHERE FromDate = '2022-10-10' AND ToDate = '2022-10-31'

    SELECT * FROM SalesByCustomerReport WHERE CustomerId NOT IN ('3285934000000152001')

    SELECT * FROM SalesByCustomerReport WHERE EntityList IN ('invoice')

Columns

Name Type References SupportedOperators Description
ContactBillingAttention String Contact Billing Attention
ContactBillingCity String Contact Billing City
ContactBillingCountry String Contact Billing Country
ContactBillingFax String Contact Billing Fax
ContactBillingPhone String Contact Billing Phone
ContactBillingState String Contact Billing State
ContactBillingStreet1 String Contact Billing Street1
ContactBillingStreet2 String Contact Billing Street2
ContactBillingZipcode String Contact Billing Zipcode
ContactCompanyName String Contact Company Name
ContactCreatedBy String Contact Created By
ContactCreatedTime Datetime Contact CreatedTime
ContactCreditLimit Integer Contact CreditLimit
ContactCustomerSubType String Contact CustomerSubType
ContactDepartment String Contact Department
ContactDesignation String Contact Designation
ContactEmail String Contact Email
ContactFacebook String Contact Facebook
ContactFirstName String Contact FirstName
ContactLastModifiedTime Datetime Contact LastModifiedTime
ContactLastName String Contact LastName
ContactMobilePhone String Contact MobilePhone
ContactNotes String Contact Notes
ContactOutstandingReceivableAmount Integer Contact Outstanding Receivable Amount
ContactOutstandingReceivableAmountBcy Integer Contact Outstanding Receivable Amount Bcy
ContactPaymentTerms String Contact Payment Terms
ContactPhone String Contact Phone
ContactShippingAttention String Contact Shipping Attention
ContactShippingCity String Contact Shipping City
ContactShippingCountry String Contact Shipping Country
ContactShippingFax String Contact Shipping Fax
ContactShippingPhone String Contact Shipping Phone
ContactShippingState String Contact Shipping State
ContactShippingStreet1 String Contact Shipping Street1
ContactShippingStreet2 String Contact Shipping Street2
ContactShippingZipcode String Contact Shipping Zipcode
ContactSkype String Contact Skype
ContactStatus String Contact Status
ContactTwitter String Contact Twitter
ContactUnusedCreditsReceivableAmount Integer Contact Unused Credits Receivable Amount
ContactUnusedCreditsReceivableAmountBcy Integer Contact Unused Credits Receivable Amount Bcy
ContactWebsite String Contact Website
Count Integer Count
CreditNoteCount Integer Credit Note Count
CreditNoteAmount Integer Credit Note Amount
CurrencyCode String Currency Code
CustomFieldsList String Custom Fields List
CustomerName String Customer Name
FcyCreditnoteAmount Integer Fcy Creditnote Amount
FcyInvoiceAmount Integer Fcy Invoice Amount
FcySales Integer Fcy Sales
FcySalesWithTax Integer Fcy Sales With Tax
FcySalesWithoutDiscount Integer Fcy Sales Without Discount
InvoiceAmount Integer Invoice Amount
JournalCount Integer Journal Count
PreviousValues String Previous Values
Sales Integer Sales
SalesDepositCount Integer Sales Deposit Count
SalesWithTax Integer Sales With Tax
SalesWithoutDiscount Integer Sales Without Discount
CustomerId String IN, NOT IN Customer Id
Branch String Branch associated with the sales, in JSON format.
Value String Values.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
TransactionDate String Filter transaction by any transaction date.

The allowed values are Today, ThisWeek, ThisMonth, ThisQuarter, ThisYear, PreviousDay, PreviousWeek, PreviousMonth, PreviousQuarter, PreviousYear and CustomDate.

ToDate Date To Date
FromDate Date From Date
EntityList String EntityList

The allowed values are invoice, creditnote, sales_without_invoices, journal.

CData Python Connector for Zoho Books

SalesByItemReport

Generated schema file.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • TransactionDate supports the '=' comparison.
  • ToDate supports the '=' comparison.
  • FromDate supports the '=' comparison.
  • CustomerName supports the 'GROUP BY' comparison.
  • SalesPerson supports the 'GROUP BY' comparison.
  • CustomerID supports the 'IN, NOT IN' comparisons.
  • WaresouseID supports the 'IN, NOT IN' comparisons.
  • AccountID supports the 'IN, NOT IN' comparisons.
  • ItemName supports the 'IN, NOT IN, LIKE , CONTAINS , NOT LIKE' comparisons.
  • ItemSku supports the '= , != , LIKE , CONTAINS , NOT LIKE , IS NULL , IS NOT NULL' comparisons.
  • Unit supports the '= , != , LIKE , CONTAINS , NOT LIKE , IS NULL, IS NOT NULL' comparisons.

The rest of the filter is executed client-side in the connector.

For example:

SELECT * FROM SalesByItemReport WHERE TransactionDate = 'Today'

SELECT * FROM SalesByItemReport WHERE ToDate = '2022-10-31'

SELECT * FROM SalesByItemReport WHERE FromDate = '2022-10-10' AND ToDate = '2022-10-31'

SELECT * FROM SalesByItemReport GROUP BY customername

SELECT * FROM SalesByItemReport GROUP BY salesperson

SELECT * FROM SalesByItemReport WHERE customerid IN ('3285934000000152001')

SELECT * FROM SalesByItemReport WHERE warehouseid IN ('3285934000000113095')

SELECT * FROM SalesByItemReport WHERE accountid IN ('3255827000000101306')

SELECT * FROM SalesByItemReport WHERE CONTAINS (ItemName, 'BAGS')

SELECT * FROM SalesByItemReport WHERE Unit LIKE 'cm%'

Columns

Name Type References SupportedOperators Description
Amount Integer Amount
AmountWithTax Integer Amount With Tax
AmountWithoutDiscount Integer Amount Without Discount
AveragePrice Integer Average Price
IsComboProduct Boolean Is Combo Product
ItemCreatedBy String Item Created By
ItemCreatedTime Datetime Item Created Time
ItemDescription String Item Description
ItemItemType String Item Item Type
ItemLastModifiedTime Datetime Item Last Modified Time
ItemProductType String Item Product Type
ItemPurchaseDescription String Item Purchase Description
ItemPurchaseRate Integer Item Purchase Rate
ItemRate Integer Item Rate
ItemStatus String Item Status
ItemUnit String Item Unit
ItemId String Item Id
PreviousValues String Previous Values
QuantitySold Integer Quantity Sold
ReportingTag String Reporting Tag
GroupAmount String Group Amount
GroupTotalQuantitySold String Group Total Quantity Sold
Unit String = , != , LIKE , CONTAINS , NOT LIKE , IS NULL , IS NOT NULL Unit
ItemSku String = , != , LIKE , CONTAINS , NOT LIKE , IS NULL , IS NOT NULL Item Sku
ItemName String IN, NOT IN, LIKE , CONTAINS , NOT LIKE Item Name

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
TransactionDate String Filter transaction by any transaction date.

The allowed values are Today, ThisWeek, ThisMonth, ThisQuarter, ThisYear, PreviousDay, PreviousWeek, PreviousMonth, PreviousQuarter, PreviousYear, CustomDate.

ToDate Date To Date
FromDate Date From Date
CustomerId String Customer Id
AccountId String Account Id
WarehouseId String Warehouse Id
CustomerName String Customer Name
SalesPerson String Sales Person

CData Python Connector for Zoho Books

SalesBySalespersonReport

Generated schema file.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • TransactionDate supports the '=' comparison.
  • ToDate supports the '=' comparison.
  • FromDate supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM SalesBySalespersonReport WHERE TransactionDate = 'Today'

    SELECT * FROM SalesBySalespersonReport WHERE ToDate = '2022-10-31'

    SELECT * FROM SalesBySalespersonReport WHERE FromDate = '2022-10-10' AND ToDate = '2022-10-31'

Columns

Name Type References SupportedOperators Description
CNCount Integer CN Count
CNSales Integer CN Sales
CNSaleswithTax Integer CN SaleswithTax
Count Integer Count
InvoiceCount Integer Invoice Count
InvoiceSales Integer Invoice Sales
InvoiceSalesWithTax Integer Invoice SalesWithTax
PreviousValues String Previous Values
Sales Integer Sales
SalesWithTax Integer Sales With Tax
SalespersonId String Salesperson Id
SalespersonStatus String Salesperson Status
TotalSales Integer Total Sales
TotalSalesWithTax Integer Total Sales With Tax
SalespersonName String Salesperson Name
CreditBalance Integer Credit Balance
Email String Email
BalanceDue Integer Balance Due

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
TransactionDate String Filter transaction by any transaction date.

The allowed values are Today, ThisWeek, ThisMonth, ThisQuarter, ThisYear, PreviousDay, PreviousWeek, PreviousMonth, PreviousQuarter, PreviousYear, CustomDate.

ToDate Date To Date
FromDate Date From Date

CData Python Connector for Zoho Books

SalesorderDocuments

Get the attachments associated with salesorders.

Table Specific Information

Select

The connector will use the Zoho Books API to process WHERE clause conditions built with the following column and operator. The rest of the filter is executed client side within the connector.

  • SalesorderId supports the '=,IN' comparisons.
For example:
    SELECT * FROM SalesorderDocuments WHERE SalesorderId = '3255827000000101306'

    SELECT * FROM SalesorderDocuments WHERE SalesorderId IN ('3255827000000101306', '3255827000000101223')

Columns

Name Type References SupportedOperators Description
DocumentId [KEY] String Id of Document.
SalesOrderId String

SalesOrders.SalesorderId

= Id of Salesorder.
FileName String Name of the document attached.
AttachmentOrder Integer Integer denoting the order of attachment.
CanShowInPortal Boolean Boolean denoting if the document should be shown in portal or not.
FileSize String Size of the file.
FileType String Type of the file.
Source String Source from where file was uploaded.
UploadedBy String The name of the contact who uploaded the file.
UploadedTime Datetime The date and time when file was uploaded.

CData Python Connector for Zoho Books

SalesOrderLineItems

Retrieves list of line items of a sales order.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following column and operator:

  • SalesorderId supports the '=' and IN operators.

NOTE: SalesorderId is required to query SalesOrderLineItems.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM SalesOrderLineItems WHERE SalesorderId = '1894553000000077349'
	SELECT * FROM SalesOrderLineItems WHERE SalesorderId IN (SELECT SalesorderId FROM SalesOrders)
	SELECT * FROM SalesOrderLineItems WHERE SalesorderId IN ('1894553000000077349','1894553000000077350')

Columns

Name Type References SupportedOperators Description
LineItemId [KEY] String Id of a line item.
SalesorderId String

SalesOrders.SalesorderId

Id of a sales order.
BcyRate Decimal Rate of Base Currency.
CustomFields String Custom Fields added for the line item
Description String Description of the sales order line item
Discount String Discount given to specific item in sales order.
DiscountAmount Decimal Amount of discount applied for items of sales order.
ImageDocumentId String Id of image document.
ImageName String Name of the image.
ImageType String Type of image.
IsInvoiced Boolean Check if the sales order is invoiced.
ItemId String

Items.ItemId

Id of an item.
ItemOrder Integer Order of an item.
ItemTotal Decimal Total amount of an item.
ItemType String Type of item.
Name String Name of the sales order.
ProjectId String

Projects.ProjectId

Id of the project.
Quantity Decimal Total number of quantity
QuantityCancelled Decimal Total number of quantity canceled for salesorder.
Rate Decimal Rate of the line item.
Tags String Details of tags related to sales order line items
TaxId String

Taxes.TaxId

Id of tax.
TaxName String Name of the tax.
TaxPercentage Integer Percentage applied for tax.
TaxType String Type of tax.
Unit String Total quantity included in sales order items.
SKU String The SKU of the Line Item.

CData Python Connector for Zoho Books

SalesOrders

Retrieves list of all sales orders.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • SalesorderId supports the '=' comparison.
  • CustomerId supports the '=' comparison.
  • CustomerName supports the '=' comparison.
  • Date supports the '=,<,>' comparisons.
  • ReferenceNumber supports the '=' comparison.
  • SalesorderNumber supports the '=' comparison.
  • ShipmentDate supports the '=,<,>' comparisons.
  • Status supports the '=' comparison.
  • Total supports the '=,<,<=,>,>=' comparisons.
  • ItemId supports the '=' comparison.
  • ItemName supports the '=' comparison.
  • ItemDescription supports the '=' comparison.
  • SalesOrderFilter supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM SalesOrders WHERE CustomerId = '1894553000000077328' AND CustomerName = 'Zylak' AND SalesOrderFilter = 'Status.All'

    SELECT * FROM SalesOrders WHERE ShipmentDate > '2017-08-01'

    SELECT * FROM SalesOrders WHERE CONTAINS (SalesorderNumber, 'SO-00')

Columns

Name Type References SupportedOperators Description
SalesorderId [KEY] String =,IN Id of a sales order.
SalespersonName String Name of the sales order.
BcyTotal Decimal Total Base Currency.
ColorCode String Color code of Sales order.
CompanyName String Name of the company.
CreatedTime Datetime Time at which the sales order was created.
CurrencyCode String Currency code of the customer's currency.
CurrencyId String

Currencies.CurrencyId

Currency Id of the customer's currency.
CurrentSubStatus String Current sub status of a sales order.
CurrentSubStatusId String Current sub status Id of a sales order.
CustomerId String

Contacts.ContactId

Id of the customer or vendor. Search Sales Order based on customer_id.
CustomerName String Name of the customer or vendor. .
Date Date =,<,> Date of an sales order.
DueByDays String Total number of day sales order is due by.
DueInDays String Total number of day the sales order is due in.
HasAttachment Boolean Check if the sales order has attachment.
InvoicedStatus String Status of invoiced sales orders.
IsEmailed Boolean Check if the sales order is emailed.
LastModifiedTime Datetime The time of last modification of the sales order.
OrderStatus String Status of order.
ReferenceNumber String Reference number of sales order.
SalesorderNumber String Number of a sales order.
ShipmentDate Date =,<,> Date of shipment.
ShipmentDays String Total number of days for shipment.
Status String Status of sales order.

The allowed values are draft, open, invoiced, partially_invoiced, void, overdue.

Total Decimal =,<,<=,>,>= Total of sales orders.
TotalInvoicedAmount Decimal Total amount which is invoiced.
CustomFieldsList String Custom fields associated with the sales order.
DeliveryDate Date Delivery date of the sales order.
DeliveryMethod String Delivery method for the sales order.
DeliveryMethodId String ID of the delivery method for the sales order.
Email String Email associated with the sales order.
OrderFulfillmentType String Order fulfillment type for the sales order.
PaidStatus String Paid status of the sales order.
PickupLocationId String Pickup location ID for the sales order.
QuantityInvoiced Decimal Quantity invoiced for the sales order.
Source String Source of the sales order.
ZcrmPotentialId String Zoho CRM Potential ID associated with the sales order.
ZcrmPotentialName String Zoho CRM Potential Name associated with the sales order.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
ItemId String Id of an item.
ItemName String Name of an item.
ItemDescription String Description of an item.
SalesOrderFilter String Filter sales order by status.

CData Python Connector for Zoho Books

SalesOrderTemplates

Get all sales order pdf templates.

Table Specific Information

Select

The connector uses the Zoho Books API to retrieve the list of all PDF templates associated with Sales Orders. All filtering is executed client-side in the connector.

For example:

  SELECT * FROM SalesOrderTemplates;

Columns

Name Type References SupportedOperators Description
TemplateId [KEY] String Id of the estimate template
TemplateName String Name of the estimate template
TemplateType String Type of the estimate templates

CData Python Connector for Zoho Books

StockSummaryReport

Generated schema file.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • TransactionDate supports the '=' comparison.
  • ToDate supports the '=' comparison.
  • FromDate supports the '=' comparison.
  • ItemName supports the '= , != , LIKE, NOT LIKE, CONTAINS, IS NULL, IS NOT NULL' comparisons.
  • ItemSku supports the '= , != , LIKE, NOT LIKE, CONTAINS, IS NULL, IS NOT NULL' comparisons.
  • WarehouseId supports the 'IN, NOT IN' comparisons.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM StockSummaryReport WHERE TransactionDate = 'Today'

    SELECT * FROM StockSummaryReport WHERE ToDate = '2022-10-31'

    SELECT * FROM StockSummaryReport WHERE FromDate = '2022-10-10' AND ToDate = '2022-10-31'

    SELECT * FROM StockSummaryReport WHERE ItemName IS NULL
	
	SELECT * FROM StockSummaryReport WHERE ItemName = 'BAGS'
	
	SELECT * FROM StockSummaryReport WHERE CONTAINS (ItemName, 'BAGS')
	
	SELECT * FROM StockSummaryReport WHERE ItemName LIKE '%b'
	
	SELECT * FROM StockSummaryReport WHERE ItemName NOT LIKE '%b%'
	
	SELECT * FROM StockSummaryReport WHERE WarehouseId IN ('3285934000000113095')

Columns

Name Type References SupportedOperators Description
ClosingStock Double Closing Stock
ItemId String Item Id
OpeningStock Double Opening Stock
PurchaseAccountName String Purchase Account Name
QuantityIn Double Quantity In
QuantityOut Double Quantity Out
ItemItemType String ItemItem Type
ItemProductType String Item Product Type
ItemStatus String Item Status
ItemUnit String Item Unit
ItemDescription String Item Description
ItemRate String Item Rate
ItemPurchaseDescription String Item Purchase Description
ItemPurchaseRate String Item Purchase Rate
ItemCreatedTime Datetime Item Created Time
ItemCreatedBy String Item Created By
ItemLastModitfiedTime Datetime Item Last Moditfied Time
ItemSku String = , != , LIKE, NOT LIKE, CONTAINS, IS NULL, IS NOT NULL Item Sku
ItemName String = , != , LIKE, NOT LIKE, CONTAINS, IS NULL, IS NOT NULL Item Name

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
TransactionDate String Filter transaction by any transaction date.

The allowed values are Today, ThisWeek, ThisMonth, ThisQuarter, ThisYear, PreviousDay, PreviousWeek, PreviousMonth, PreviousQuarter, PreviousYear, CustomDate.

ToDate Date To Date
FromDate Date From Date
WarehouseId String To Date

CData Python Connector for Zoho Books

TaxSummaryReport

This report summarizes your company's assets, liabilities and equity at a specific point in time

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • ToDate supports the '=' comparison.
  • FromDate supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM TaxSummaryReport WHERE ToDate = '2022-10-31'

    SELECT * FROM TaxSummaryReport WHERE FromDate = '2022-10-10' AND ToDate = '2022-10-31'

Columns

Name Type References SupportedOperators Description
InputTaxAccountId Long Input Tax Account Id
IsTaxAccount Boolean Is Tax Account
IsValueAdded Boolean Is Value Added
OutputTaxAccountId Long Output Tax Account Id
TaxAmount String Tax Amount
TaxId Long Tax Id
TaxName String Tax Name
TaxPercentage String Tax Percentage
TransactionAmount String Transaction Amount

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
ToDate Date To Date
FromDate Date From Date

CData Python Connector for Zoho Books

TrialBalanceReport

This report summarizes your company's assets, liabilities and equity at a specific point in time

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • TransactionDate supports the '=' comparison.
  • ToDate supports the '=' comparison.
  • FromDate supports the '=' comparison.
  • CashBased supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM TrialBalanceReport WHERE TransactionDate = 'Today'

    SELECT * FROM TrialBalanceReport WHERE ToDate = '2022-10-31'

    SELECT * FROM TrialBalanceReport WHERE FromDate = '2022-10-10' AND ToDate = '2022-10-31'

    SELECT * FROM TrialBalanceReport WHERE CashBased = True

Columns

Name Type References SupportedOperators Description
BalanceTypeName String Balance Type Name
SubBalanceTypeName String Sub Balance Type Name
AccountTransactionTypeName String Account Transaction Type Name
AccountTransactionCreditTotal Decimal Credit Total
AccountTransactionDebitTotal Decimal Debit Total
SubAccountCreditTotal Decimal Sub Account Credit Total
SubAccountDebitTotal Decimal Sub Account Debit Total
CreditTotal Decimal Account Transaction Type Credit Total
DebitTotal Decimal Account Transaction Type Debit Total

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
CashBased Boolean Cash Based
TransactionDate String Filter transaction by any transaction date.

The allowed values are Today, ThisWeek, ThisMonth, ThisQuarter, ThisYear, PreviousDay, PreviousWeek, PreviousMonth, PreviousQuarter, PreviousYear, CustomDate.

ToDate Date ToDate
FromDate Date FromDate

CData Python Connector for Zoho Books

VendorBalancesReport

Generated schema file.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • ReportDate supports the '=' comparison.
  • VendorId supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM VendorBalancesReport WHERE ReportDate = '2022-10-31'
    SELECT * FROM VendorBalancesReport WHERE VendorId = '3285934000000104023'

Columns

Name Type References SupportedOperators Description
VendorName String Vendor Name
BillBalance Integer Bill Balance
BcyAdvancePayment String Bcy Advance Payment
BcyBalance Integer Bcy Balance
BcyBillBalance Integer Bcy Bill Balance
BcyCreditBalance String Bcy Credit Balance
BcyExcessPayment Integer Bcy Excess Payment
BcyJournalCredits String Bcy Journal Credits
CurrencyId String CurrencyId
ExcessPayment Integer Excess Payment
FcyAdvancePayment String Fcy Advance Payment
FcyBalance Integer Fcy Balance
FcyCreditBalance String Fcy Credit Balance
FcyJournalCredits String Fcy Journal Credits
VendorCompanyName String Vendor Company Name
VendorCreatedBy String Vendor Created By
VendorCreatedTime Datetime Vendor Created Time
VendorDepartment String Vendor Department
VendorDesignation String Vendor Designation
VendorEmail String Vendor Email
VendorFacebook String Vendor Facebook
VendorFirstName String Vendor FirstName
VendorLastModifiedTime Datetime Vendor Last Modified Time
VendorLastName String Vendor Last Name
VendorMobilePhone String Vendor Mobile Phone
VendorNotes String Vendor Notes
VendorOutstandingPayableAmount Integer Vendor Outstanding Payable Amount
VendorOutstandingPayableAmountBcy Integer Vendor Outstanding Payable AmountBcy
VendorPaymentTerms String Vendor PaymentTerms
VendorPhone String Vendor Phone
VendorSkype String Vendor Skype
VendorStatus String Vendor Status
VendorTwitter String Vendor Twitter
VendorUnusedCreditsPayableAmount Integer Vendor Unused Credits Payable Amount
VendorUnusedCreditsPayableAmountBcy Integer Vendor Unused Credits Payable AmountBcy
VendorWebsite String Vendor Website
VendorId String = Vendor Id

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
ReportDate Date Report Date

CData Python Connector for Zoho Books

VendorCreditBills

Retrieves list of bills to which the vendor credit is applied.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following column and operator:

  • VendorCreditId supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM VendorCreditBills WHERE VendorCreditId = '1894545000000083308'

Columns

Name Type References SupportedOperators Description
VendorCreditBillId [KEY] String Bill Id of vendor credit.
VendorCreditId String

VendorCredits.VendorCreditId

Id of a vendor credit.
VendorCreditNumber String Number of vendor credit.
Amount Decimal Amount of the vendor credited bills.
BillId String

Bills.BillId

Id of a bill.
BillNumber String Number of a bill.
Date Date Date of a vendor credit.

CData Python Connector for Zoho Books

VendorCreditLineItems

Retrieves list of line items from vendor credits.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following column and operator:

  • VendorCreditId supports the '=' and IN operators.

NOTE: VendorCreditId is required to query VendorCreditLineItems.

The rest of the filter is executed client-side in the connector

For example:

    SELECT * FROM VendorCreditLineItems WHERE VendorCreditId = '1894545000000083308'
	SELECT * FROM VendorCreditLineItems WHERE VendorCreditId IN (SELECT VendorCreditId FROM VendorCredits)
	SELECT * FROM VendorCreditLineItems WHERE VendorCreditId IN ('1894545000000083308','1894545000000083309')

Columns

Name Type References SupportedOperators Description
LineItemId [KEY] String Id of a line item.
VendorCreditId String

VendorCredits.VendorCreditId

Id of a vendor credit.
AccountId String

BankAccounts.AccountId

Id of the Bank Account.
AccountName String Name of the account.
BcyRate Decimal Rate of a Base Currency.
CustomFields String Custom Fields added for the line item
Description String Description of the vendor credit line item.
GstTreatmentCode String Treatement code of GST.
HasProductTypeMismatch Boolean Check if the product type has mismatch.
HsnOrSac String HSN Code.
ItcEligibility String Eligibility of Input Tax Credit.
ItemId String

Items.ItemId

Id of an item.
ItemOrder Integer Order of an item.
ItemTotal Decimal Total of an item.
ItemType String Type of an item.
Name String Name of a line item.
PricebookId String Id of a price book.
ProductType String Product type of vendor credit.
ProjectId String

Projects.ProjectId

Id of a project.
Quantity Decimal Quantity of vendor credit.
Rate Decimal Rate of vendor credit.
ReverseChargeTaxId String Id of the reverse charge tax.
Tags String Details of tags related to vendor credit line items.
TaxExemptionCode String Code of tax exemption.
TaxExemptionId String

BankRules.TaxExemptionId

Id of tax exemption.
TaxId String

Taxes.TaxId

Id of tax.
TaxName String Name of tax.
TaxPercentage Integer Percentage of tax.
TaxType String Type of tax.
Unit String Unit of line items in vendor credit.
SKU String The SKU of the Line Item.

CData Python Connector for Zoho Books

VendorCredits

Retrieves list of vendor credits.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • VendorCreditNumber supports the '=' comparison.
  • Date supports the '=,<,>' comparisons.
  • LastModifiedTime supports the '=' comparison.
  • ReferenceNumber supports the '=' comparison.
  • Status supports the '=' comparison.
  • Total supports the '=,<,<=,>,>=' comparisons.
  • CustomerId supports the '=' comparison.
  • VendorCreditsFilter supports the '=' comparison.
  • LineItemId supports the '=' comparison.
  • ItemId supports the '=' comparison.
  • TaxId supports the '=' comparison.
  • CustomerName supports the '=' comparison.
  • ItemDescription supports the '=' comparison.
  • Notes supports the '=' comparison.
  • ItemName supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM VendorCredits WHERE Total >= 100 AND Status = 'open'

    SELECT * FROM VendorCredits WHERE VendorCreditNumber = 'CN-00001'

Columns

Name Type References SupportedOperators Description
VendorCreditId [KEY] String Id of a vendor credit.
VendorCreditNumber String Number of a vendor credit.
VendorName String Name of the vendor the vendor credit has been made.
Balance Decimal Balance of a vendor credit.
ColorCode String Color code of vendor credit.
CreatedTime Datetime Time at which the vendor credit was created.
CurrencyCode String Currency code of the customer's currency.
CurrencyId String

Currencies.CurrencyId

Currency Id of the customer's currency.
CurrentSubStatus String Current sub status of a vendor credit.
CurrentSubStatusId String Current sub status Id of a vendor credit.
Date Date =,<,> Date of the vendor credit.
HasAttachment Boolean Check if vendor credit has attachment.
LastModifiedTime Datetime Last modfified time of the vendor credit.
ReferenceNumber String Reference number of the vendor credit.
Status String Status of the vendor credit.

The allowed values are open, closed, void.

Total Decimal =,<,<=,>,>= Total of vendor credits. Search by total amount.
VendorId String Id of the vendor the vendor credit has been made.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
CustomerId String Id of a customer.
VendorCreditFilter String Filter vendor credits by statuses.

The allowed values are Status.All, Status.Open, Status.Draft, Status.Closed, Status.Void.

LineItemId String Id of a line item.
ItemId String Id of an item.
TaxId String Id of a tax.
CustomerName String Name of the vendor.
ItemDescription String Description of an item.
Notes String Notes of a vendor credit.
ItemName String Name of an item.

CData Python Connector for Zoho Books

VendorPaymentBills

Retrieves bills related to vendor payments.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the PaymentId column, which supports '=,IN' comparisons.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM VendorPaymentBills WHERE PaymentId = '3255827000000099005'

    SELECT * FROM VendorPaymentBills WHERE PaymentId IN ('3255827000000101458', '3255827000000099005')

Columns

Name Type References SupportedOperators Description
BillPaymentId [KEY] Long The Bill Payment Id
PaymentId String

VendorPayments.PaymentId

The Vendor Payment Id
AmountApplied Integer The Amount Applied to the bill
BillId String

Bills.BillId

The Bill Id
TaxAmountWithheld Integer The tax amount which has been withheld

CData Python Connector for Zoho Books

VendorPayments

Retrieves list of all the payments made to your vendor.

Table Specific Information

Select

The connector uses the Zoho Books API to process WHERE clause conditions built with the following columns and operators:

  • VendorId supports the '=' comparison.
  • VendorName supports the '=' comparison.
  • Amount supports the '=,<,<=,>,>=' comparisons.
  • Date supports the '=,<,>' comparisons.
  • Description supports the '=' comparison.
  • LastModifiedTime supports the '=' comparison.
  • PaymentMode supports the '=' comparison.
  • PaymentNumber supports the '=' comparison.
  • ReferenceNumber supports the '=' comparison.
  • VendorPaymentFilter supports the '=' comparison.
  • Notes supports the '=' comparison.

The rest of the filter is executed client-side in the connector.

For example:

    SELECT * FROM VendorPayments WHERE Amount >= 98 AND Date < '2019-07-07'

    SELECT * FROM VendorPayments WHERE PaymentNumber = 1;

    SELECT * FROM VendorPayments WHERE CONTAINS (PaymentMode, 'sh')

Columns

Name Type References SupportedOperators Description
PaymentId [KEY] String Id of a payment.
VendorId String Id of the vendor the vendor payment has been made. Search payments by vendor id.
VendorName String Name of the vendor the vendor payment has been made. Search payments by vendor name.
AchGwTransactionId String Id of a ACH GW Transaction.
Amount Decimal =,<,<=,>,>= Payment amount made to the vendor. Search payments by payment amount.
Balance Decimal Balance of vendor payment.
BcyAmount Decimal Amount of Base Currency.
BcyBalance Decimal Balance of Base Currency.
CheckDetailsCheckId String Id of a check.
CheckDetailsCheckNumber String Number of a check.
Date Date =,<,> Date the payment is made. Search payments by payment made date.
Description String Description of a vendor payment.
HasAttachment Boolean Check if a vendor payment has attachment.
LastModifiedTime Datetime Last Modified Time of the Vendor Payment.
PaymentMode String Mode through which payment is made. Search payments by payment mode.
PaymentNumber String Number through which payment is made. Search with Payment Number.
ReferenceNumber String Reference number of a a bill.
AchPaymentStatus String Status of ACH Payment.
CheckDetailsCheckStatus String Status of check.
CheckDetailsMemo String Memo of check details.
CreatedTime Datetime Time at which the vendor payment was created.
CurrencyCode String Currency code of the vendor payment.
CurrencyId String

Currencies.CurrencyId

Currency Id of the vendor payment currency.
ExchangeRate Decimal Exchange rate of a vendor payment.
IsAchPayment Boolean Check if the payment is done with ACH payment.
IsAdvancePayment Boolean Check if the payment is an advance payment.
IsPaidViaPrintCheck Boolean Check if vendor payment paid via print check.
PaidThroughAccountId String

BankAccounts.AccountId

Account Id from which vendor payment has been made.
PaidThroughAccountName String Account name from which vendor payment has been made.
ProductDescription String Description of the product.
Status String Status of the vendor payment.
BillNumbers String Bill numbers associated with the vendor payment.

Pseudo-Columns

Pseudo column fields are used in the WHERE clause of SELECT statements and offer more granular control over the data returned from the data source.

Name Type Description
VendorPaymentFilter String Filter payments by mode.

The allowed values are PaymentMode.All, PaymentMode.Check, PaymentMode.Cash, PaymentMode.BankTransfer, PaymentMode.Paypal, PaymentMode.CreditCard, PaymentMode.GoogleCheckout, PaymentMode.Credit, PaymentMode.Authorizenet, PaymentMode.BankRemittance, PaymentMode.Payflowpro, PaymentMode.Others..

Notes String Notes of vendor payments..

CData Python Connector for Zoho Books

Stored Procedures

Stored procedures are function-like interfaces that extend the functionality of the connector beyond simple SELECT/INSERT/UPDATE/DELETE operations with Zoho Books.

Stored procedures accept a list of parameters, perform their intended function, and then return any relevant response data from Zoho Books, along with an indication of whether the procedure succeeded or failed.

CData Python Connector for Zoho Books Stored Procedures

Name Description
AddAttachment Attaches a file to salesorder, invoice, purchaseorder etc.
AddExpenseReceipt Attaches a receipt to an expense.
ApproveAnEntity Approves an estimate, salesorder, invoice, creditnote, retainerinvoice, purchaseorder, bill or vendorcredit.
BillsApplyCredit Applies the vendor credits from excess vendor payments to a bill.
ContactEnableOrDisablePaymentReminder Reminds the associated contact if payment date is missed.
ContactEnablePortalAccess Enables portal access for a contact.
ContactSendEmail Send email to contact.
DeleteAttachment Removes attached file from salesorders, invoices, purchaseorders, or bills.
DeleteCustomModuleField Deletes a column from a custom module.
DeleteImportedStatement Deletes the BankAccounts statement that was previously imported.
DownloadAttachment Returns the file attached to the invoice.
DownloadExpenseReceipt Returns the receipt attached to the expense.
DownloadRetainerInvoiceAttachment Returns the file attached to the retainer invoice.
EmailACreditNote Emails a credit note to the customer.
EmailAnEstimate Emails an estimate to the customer.
EmailAnInvoice Emails an invoice to the customer.
EmailAPurchaseOrder Emails a purchase order to the customer.
EmailARetainerInvoice Email a retainer invoice to the customer. Input json string is not mandatory. If input json string is empty, mail will be send with default mail content.
EmailASalesOrder Email a sales order to the customer. Input json string is not mandatory. If input json string is empty, mail will be send with default mail content.
EmailMultipleEstimates Email an invoice to the customer.
EmailMultipleInvoices Email an invoice to the customer.
ExportReport Downloads report as a pdf or xls file
GetOAuthAccessToken Gets an authentication token from Zoho Books.
GetOAuthAuthorizationURL Gets the authorization URL that must be opened separately by the user to grant access to your application. Only needed when developing Web apps. You will request the OAuthAccessToken from this URL.
ImportCreditCardStatement Imports your bank/credit card feeds into your account.
InvoiceBulkInvoiceReminder Reminds your customer about unpaid invoices by email. A reminder mail is only sent for invoices in an open or overdue status. You can specify a maximum of ten invoices.
InvoiceCancelWriteOFFInvoice Cancels the write-off amount of an invoice.
InvoiceDeleteExpenseReceipt Deletes attached receipt.
InvoiceEnableOrDisablePaymentReminder Enables or disables automated payment reminders for an invoice.
InvoiceWriteOFFInvoice Writes off the invoice balance amount of an invoice.
MarkCustomerContactAsPrimary Updates the status as primary for customer contacts.
MarkJournalAsPublished Updates the status of a journal as published.
ModifyBankAccountStatus Updates the status as active or inactive for a bank account.
ModifyBillStatus Updates the status as void or open for a Bill.
ModifyChartofAccountStatus Updates the status as active or inactive for a chartofaccount.
ModifyContactStatus Updates the status as active or inactive for a contact.
ModifyCreditNoteStatus Updates the status as draft, void or open for a CreditNote.
ModifyEstimateStatus Updates the status as sent, accepted, or declined for estimates.
ModifyInvoiceStatus Updates the status as sent, void, or draft for an invoice.
ModifyItemStatus Updates the status as active or inactive for an item.
ModifyProjectStatus Updates the status as active or inactive for a project.
ModifyPurchaseOrderStatus Updates the status as open, cancelled, or billed for a purchaseorder.
ModifyRecurringBillStatus Updates the status as stop or resume for a recurring bill.
ModifyRecurringExpenseStatus Updates the status as stop or resume for a recurring expense.
ModifyRecurringInvoiceStatus Updates the status as stop or resume for a recurring invoice.
ModifyRetainerInvoiceStatus Updates the status as sent, void, or draft for retainerinvoice.
ModifySalesorderStatus Updates the status as void or open for a project.
ModifyUserStatus Updates the status as active or inactive for a user.
ModifyVendorCreditStatus Changes an existing vendor credit status to void or open.
ProjectsInviteAUser Invites a user to the project.
RefreshOAuthAccessToken Refreshes the OAuth access token used for authentication with ZohoBooks.
SubmitAnEntityForApproval Submits an estimate, salesorder, invoice, creditnote, retainerinvoice, purchaseorder, bill, or vendorcredit for approval.
TransactionsUnCategorizeACategorizedTransaction Reverts a categorized transaction to uncategorized.
TransactionsUnMatchATransaction Categorizes an uncategorized transaction.
UsersInviteAUser Sends invitation email to a user.

CData Python Connector for Zoho Books

AddAttachment

Attaches a file to salesorder, invoice, purchaseorder etc.

Input

Name Type Required Description
EntityId String True Id of categories like Invoices, Purchase Orders, Bills, SalesOrders.
EntityName String True Name of Entity

The allowed values are invoices, purchaseorders, bills, salesorders, journals.

Attachments String False Allowed Extensions: gif, png, jpeg, jpg, bmp, pdf, xls, xlsx, doc and docx.
DocumentIds String False Ids of the documents.
CanSendInMail Boolean False Boolean to decide if the document should be send in mail or not.
FileName String False Attachment name. This is required when content is not null.

Result Set Columns

Name Type Description
Status String Stored procedure execution status.

CData Python Connector for Zoho Books

AddExpenseReceipt

Attaches a receipt to an expense.

Input

Name Type Required Description
Id String True Id of an expense.
Attachments String False Expense receipt file to attach. Allowed Extensions: gif, png, jpeg, jpg, bmp, pdf, xls, xlsx, doc and docx.
FileName String False Attachment name. This is required when content is not null.

Result Set Columns

Name Type Description
Status String Stored procedure execution status.

CData Python Connector for Zoho Books

ApproveAnEntity

Approves an estimate, salesorder, invoice, creditnote, retainerinvoice, purchaseorder, bill or vendorcredit.

Input

Name Type Required Description
EntityId String True Id of categories like estimate, salesorder, invoice, creditnote, retainerinvoice, purchaseorder, bill or vendorcredit.
EntityName String True Entity Name such as estimate, salesorder, invoice, creditnote, retainerinvoice, purchaseorder, bill or vendorcredit

The allowed values are estimates, salesorders, invoices, creditnotes, retainerinvoices, purchaseorders, bills, vendorcredits.

Result Set Columns

Name Type Description
Status String Stored procedure execution status.

CData Python Connector for Zoho Books

BillsApplyCredit

Applies the vendor credits from excess vendor payments to a bill.

Execute

Import your bank/credit card feeds into your account:

INSERT INTO BillsApplyCredit#TEMP (BillPaymentsPaymentID, BillPaymentsAmountApplied) VALUES ('3255827000000150156', '600')
INSERT INTO BillsApplyCredit#TEMP (ApplyVendorCreditsVendorCreditId, ApplyVendorCreditsAmountApplied) VALUES ('3255827000000150156', '600')

EXECUTE ApplyVendorCreditsAmountApplied Id = '3255827000000150152', BillPayments = BillsApplyCredit#TEMP 

EXECUTE ApplyVendorCreditsAmountApplied Id = '3255827000000150152', BillPaymentsPaymentId = '3255827000000099218', BillPaymentsAmountApplied = 900

Input

Name Type Required Description
Id String True Id of categories like Invoices, Purchase Orders, Bills, SalesOrders.
BillPayments String False Bill Payments
ApplyVendorCredits String False Details of vendor credit for which credit has to be applied
BillPaymentsPaymentId String False Id of the Payment
BillPaymentsAmountApplied String False Amount applied to the bill.
ApplyVendorCreditsVendorCreditId String False Id of the Vendor Credit
ApplyVendorCreditsAmountApplied String False Amount applied to the bill.

Result Set Columns

Name Type Description
Status String Stored procedure execution status.

CData Python Connector for Zoho Books

ContactEnableOrDisablePaymentReminder

Reminds the associated contact if payment date is missed.

Input

Name Type Required Description
Id String True Id of a contact.
EntityStatus String True Status such as enable or disable

The allowed values are enable, disable.

Result Set Columns

Name Type Description
Status String Stored procedure execution status.

CData Python Connector for Zoho Books

ContactEnablePortalAccess

Enables portal access for a contact.

Execute

Enable portal access for a contact:

INSERT INTO ContactEnablePortalAccess#TEMP (CustomerContactId) VALUES ('3255827000000122033')

EXECUTE ContactEnablePortalAccess Id = '3255827000000093001', CustomerContacts = ContactEnablePortalAccess#TEMP 

Input

Name Type Required Description
Id String True Id of a contact.
CustomerContacts String False Customer Contacts
CustomerContactId String False Customer ContactId

Result Set Columns

Name Type Description
Status String Stored procedure execution status.

CData Python Connector for Zoho Books

ContactSendEmail

Send email to contact.

Input

Name Type Required Description
Id String True Id of Contacts
ToMailIds String True Array of email addresses of the recipients.
Subject String True Subject of an email that has to be sent.
Body String True Body/content of the email to be sent
MailDocumentsDocumentId String False Id of the Documents attached with the contact
AttachUnpaidInvoiceList Boolean False Boolean denoting if customer unpaid invoice list should be attached with email.
AttachCustomerStatement Boolean False Boolean denoting if customer statement pdf should be attached with email.
CustomerStatementFileName String False FileName of customer statement. Required if AttachCustomerStatement is true
Attachments String False Files to be attached to the email
FileName String False Attachment name. This is required when content is not null.

Result Set Columns

Name Type Description
Status String Execution status of the stored procedure

CData Python Connector for Zoho Books

DeleteAttachment

Removes attached file from salesorders, invoices, purchaseorders, or bills.

Input

Name Type Required Description
EntityId String True Id of categories such as Invoices, Purchase Orders, Bills, or SalesOrders.
EntityName String True Name of the entity.

The allowed values are invoices, purchaseorders, bills, salesorders.

Result Set Columns

Name Type Description
Status String Stored procedure execution status.

CData Python Connector for Zoho Books

DeleteCustomModuleField

Deletes a column from a custom module.

Input

Name Type Required Description
FieldName String True Name of the field that has to be deleted.
EntityName String True Name of the custom module
IsForceDelete Boolean False Name of the entity

Result Set Columns

Name Type Description
Status String Stored procedure execution status.

CData Python Connector for Zoho Books

DeleteImportedStatement

Deletes the BankAccounts statement that was previously imported.

Input

Name Type Required Description
AccountId String True Id of Bank Account
StatementId String True Id of Bank Statement

Result Set Columns

Name Type Description
Status String Stored procedure execution status

CData Python Connector for Zoho Books

DownloadAttachment

Returns the file attached to the invoice.

Stored Procedures Specific Information

Process of Download Attachment

Zoho Books allows only a small subset of columns to be used in the Exec query. These columns can typically be used with only = comparison. For example:

EXECUTE DownloadAttachment SourceId = '1894553000000091007', SourceType = 'invoices', FileLocation = 'C:/zohobooks'

Input

Name Type Required Description
SourceId String True Id of categories like Invoices, Purchase Orders, Bills, SalesOrders.
SourceType String True Type of source

The allowed values are invoices, purchaseorders, bills, salesorders.

FileLocation String False The folder path to download the file to.
Encoding String False The FileData input encoding type.

The allowed values are NONE, BASE64.

The default value is BASE64.

Result Set Columns

Name Type Description
Status String Stored procedure execution status.
FileData String If the FileLocation and FileStream are not provided, this contains the content of the file.

CData Python Connector for Zoho Books

DownloadExpenseReceipt

Returns the receipt attached to the expense.

Stored Procedures Specific Information

Process of Download Expense Receipt

Zoho Books allows only a small subset of columns to be used in the Exec query. These columns can typically be used with only the = comparison. The available columns for DownloadExpenseReceipt are ExpenseId and FileLocation. For example:

EXECUTE DownloadExpenseReceipt ExpenseId = '1894553000000092001', FileLocation = 'C:/zohobooks'

Input

Name Type Required Description
ExpenseId String True Id of an expense.
FileLocation String False The folder path to download the file to.
ExportFormat String False The format of the document to download (HTML or markdown).

The default value is html.

AsZip String False Download the file or folder in a zip format.
Encoding String False The FileData input encoding type.

The allowed values are NONE, BASE64.

The default value is BASE64.

Result Set Columns

Name Type Description
Status String Stored procedure execution status.
FileData String If the FileLocation and FileStream are not provided, this contains the content of the file.

CData Python Connector for Zoho Books

DownloadRetainerInvoiceAttachment

Returns the file attached to the retainer invoice.

Stored Procedures Specific Information

Process of Download Expense Receipt

Zoho Books allows only a small subset of columns to be used in the Exec query. These columns can typically be used with only = comparison. The available columns for DownloadExpenseReceipt are RetainerInvoiceId, DocumentId and FileLocation. For example:

EXECUTE DownloadRetainerInvoiceAttachment RetainerInvoiceId = '1894553000000085021', DocumentId = '1894553000000099221', FileLocation = 'C:/zohobooks'

Input

Name Type Required Description
RetainerInvoiceId String True Id of retainer invoice.
DocumentId String True Id of document.
FileLocation String False The folder path to download the file to.
Encoding String False The FileData input encoding type.

The allowed values are NONE, BASE64.

The default value is BASE64.

Result Set Columns

Name Type Description
Status String Stored procedure execution status.
FileData String If the FileLocation and FileStream are not provided, this contains the content of the file.

CData Python Connector for Zoho Books

EmailACreditNote

Emails a credit note to the customer.

Input

Name Type Required Description
Id String True Id of Credit Note
CustomerId String False Customer Id of the customer for whom the credit note is raised.
ToMailIds String True Array of email addresses of the recipients.
CcMailIds String False Array of email addresses of the recipients to be CC ed.
Subject String True Subject of an email that has to be sent.
Body String True Body/content of the email to be sent
MailDocumentsDocumentId String False Id of the Documents attached with the contact
CreditNoteNumber String False The CreditNote Number associated with the Id.
Attachments String False Files to be attached to the email
FileName String False Attachment name. This is required when content is not null.

Result Set Columns

Name Type Description
Status String Execution status of the stored procedure

CData Python Connector for Zoho Books

EmailAnEstimate

Emails an estimate to the customer.

Input

Name Type Required Description
Id String True Id of Estimate
FromContactId String True Id of the contact from which email has to be sent
ToMailIds String True Array of email addresses of the recipients.
CcMailIds String False Array of email addresses of the recipients to be CC ed.
Subject String False Subject of an email that has to be sent.
Body String False Body/content of the email to be sent
MailDocumentsDocumentId String False Id of the Document
EstimateNumber String False The Estimate Number associated with the Id. This value is required if AttachEstimateAsPdf is true
AttachEstimateAsPdf Boolean False Boolean value denoting if estimate pdf should be attached or not in the mail.
SendAssociatedAttachments Boolean False Boolean denoting if attachments associated with estimate should be attached with email.
Attachments String False Files to be attached to the email
FileName String False Attachment name. This is required when content is not null.

Result Set Columns

Name Type Description
Status String Execution status of the stored procedure

CData Python Connector for Zoho Books

EmailAnInvoice

Emails an invoice to the customer.

Input

Name Type Required Description
Id String True Id of Invoice
SendFromOrgEmailId Boolean False Boolean to trigger the email from the organization's email address
ToMailIds String True Array of email addresses of the recipients.
CcMailIds String False Array of email addresses of the recipients to be CC ed.
Subject String False Subject of an email that has to be sent.
Body String False Body/content of the email to be sent
InvoiceNumber String False The Invoice Number associated with the Id. This value is required if AttachInvoiceAsPdf is true
AttachInvoiceAsPdf Boolean False Boolean value denoting if invoice pdf should be attached or not in the mail.
AttachCustomerStatement Boolean False Boolean denoting if customer statement pdf should be attached with email.
SendAttachment Boolean False Boolean value denoting if the documents attached to the invoice should be sent or not.
Attachments String False Files to be attached to the email
FileName String False Attachment name. This is required when content is not null.

Result Set Columns

Name Type Description
Status String Execution status of the stored procedure

CData Python Connector for Zoho Books

EmailAPurchaseOrder

Emails a purchase order to the customer.

Input

Name Type Required Description
Id String True Id of PurchaseOrder
SendFromOrgEmailId Boolean False Boolean to trigger the email from the organization's email address
FromAddressId Long False Id of From Address of the Email Address
ToMailIds String True Array of email addresses of the recipients.
CcMailIds String False Array of email addresses of the recipients to be CCd.
BCcMailIds String False Array of email address of the recipients to be BCC ed.
Subject String True Subject of an email that has to be sent.
Body String True Body/content of the email to be sent
MailDocumentsDocumentId String False Id of the Documents
PurchaseOrderNumber String False The PurchaseOrder Number associated with the Id. This value is required if AttachPurchaseOrderAsPdf is true
AttachPurchaseOrderAsPdf Boolean False Boolean value denoting if purchase order pdf should be attached or not in the mail.
Attachments String False Files to be attached to the email
FileName String False Attachment name. This is required when content is not null.

Result Set Columns

Name Type Description
Status String Execution status of the stored procedure

CData Python Connector for Zoho Books

EmailARetainerInvoice

Email a retainer invoice to the customer. Input json string is not mandatory. If input json string is empty, mail will be send with default mail content.

Input

Name Type Required Description
Id String True Id of Invoice
SendFromOrgEmailId Boolean False Boolean to trigger the email from the organization's email address
FromAddressId Long False Id of From Address of the Email Address
ToMailIds String True Array of email addresses of the recipients.
CcMailIds String False Array of email addresses of the recipients to be CC'd.
Subject String True Subject of an email that has to be sent.
Body String True Body/content of the email to be sent
MailDocumentsDocumentId String False Id of the Documents attached with the contact
RetainerInvoiceNumber String False The RetainerInvoice Number associated with the Id. This value is required if AttachRetainerInvoiceAsPdf is true
AttachRetainerInvoiceAsPdf Boolean False Boolean value denoting if retainer invoice pdf should be attached or not in the mail.
Attachments String False Files to be attached to the email
FileName String False Attachment name. This is required when content is not null.

Result Set Columns

Name Type Description
Status String Execution status of the stored procedure

CData Python Connector for Zoho Books

EmailASalesOrder

Email a sales order to the customer. Input json string is not mandatory. If input json string is empty, mail will be send with default mail content.

Input

Name Type Required Description
Id String True Id of SalesOrder
FromContactId String False From Address of the Email Address
ToMailIds String True Array of email addresses of the recipients.
CcMailIds String False Array of email addresses of the recipients to be CC ed.
BCcMailIds String False Array of email addresses of the recipients to be BCC ed.
Subject String True Subject of an email that has to be sent.
Body String True Body/content of the email to be sent
MailDocumentsDocumentId String False Document Ids of the Sales Order
SalesOrderNumber String False The SalesOrder Number associated with the Id. This value is required if AttachSalesOrderAsPdf is true
AttachSalesOrderAsPdf Boolean False Boolean value denoting if invoice pdf should be attached or not in the mail.
Attachments String False Files to be attached to the email
SendAttachment Boolean False Boolean value denoting if invoice pdf should be attached or not in the mail.
FileName String False Attachment name. This is required when content is not null.

Result Set Columns

Name Type Description
Status String Execution status of the stored procedure

CData Python Connector for Zoho Books

EmailMultipleEstimates

Email an invoice to the customer.

Input

Name Type Required Description
Id String True Comma separated estimate ids which are to be emailed.

Result Set Columns

Name Type Description
Status String Execution status of the stored procedure

CData Python Connector for Zoho Books

EmailMultipleInvoices

Email an invoice to the customer.

Input

Name Type Required Description
Id String True Comma separated invoice ids which are to be emailed.
Contacts String False Contacts for whom email or snail mail has to be sent.
ContactId String False Id of the contact.
Email Boolean False Boolean to specify if email has to be sent for each contact..
SnailMail Boolean False Boolean to specify if snail mail has to be sent for each contact.

Result Set Columns

Name Type Description
Status String Execution status of the stored procedure

CData Python Connector for Zoho Books

ExportReport

Downloads report as a pdf or xls file

Execute

This supports filters of the respective report view:

EXECUTE ExportReport ReportName = accounttransactions, ReportType = pdf, Filters = 'TransactionDate = ThisQuarter', FileLocation = C:\\zohobooks

Input

Name Type Required Description
ReportName String True Name of reports.
ReportType String True FilType in which report has to be downloaded.

The allowed values are pdf, xls, xlsx.

ShowOrgName Boolean False Boolean denoting org name should be shown or not.
ShowGeneratedDate Boolean False Boolean denoting date at which report was generated should be shown or not
ShowGeneratedTime Boolean False Boolean denoting time at which report was generated should be shown or not
ShowGeneratedBy Boolean False Boolean denoting name of the user who downloaded the report should be shown or not
ShowPageNumber Boolean False Boolean denoting page number should be visible or not.
Filters String False The value can be any filterable column supported in the respective reports view.
FileLocation String False Location at which exported report should be saved.

Result Set Columns

Name Type Description
Status String Stored procedure execution status.

CData Python Connector for Zoho Books

GetOAuthAccessToken

Gets an authentication token from Zoho Books.

Input

Name Type Required Description
AuthMode String False The type of authentication mode to use. Select App for getting authentication tokens via a desktop app. Select Web for getting authentication tokens via a Web app.

The allowed values are APP, WEB.

The default value is APP.

Scope String False A comma-separated list of permissions to request from the user. Please check the Zoho Books API for a list of available permissions.

The default value is ZohoBooks.fullaccess.all.

CallbackUrl String False The URL the user will be redirected to after authorizing your application. This value must match the Redirect URL you have specified in the ZohoBooks app settings. Only needed when the Authmode parameter is Web.
Verifier String False The verifier returned from Zoho Books after the user has authorized your app to have access to their data. This value will be returned as a parameter to the callback URL.
State String False Indicates any state which may be useful to your application upon receipt of the response. Your application receives the same value it sent, as this parameter makes a round-trip to the ZohoBooks authorization server and back. Uses include redirecting the user to the correct resource in your site, nonces, and cross-site-request-forgery mitigations.

Result Set Columns

Name Type Description
OAuthAccessToken String The access token used for communication with Zoho Books.
OAuthRefreshToken String The OAuth refresh token. This is the same as the access token in the case of Zoho Books.
ExpiresIn String The remaining lifetime on the access token. A -1 denotes that it will not expire.

CData Python Connector for Zoho Books

GetOAuthAuthorizationURL

Gets the authorization URL that must be opened separately by the user to grant access to your application. Only needed when developing Web apps. You will request the OAuthAccessToken from this URL.

Input

Name Type Required Description
CallbackUrl String False The URL the user will be redirected to after authorizing your application. This value must match the Redirect URL in the Zoho Books app settings.
Scope String False A comma-separated list of scopes to request from the user. Please check the Zoho Books API documentation for a list of available permissions.

The default value is ZohoBooks.fullaccess.all.

State String False Indicates any state which may be useful to your application upon receipt of the response. Your application receives the same value it sent, as this parameter makes a round-trip to the Zoho Books authorization server and back. Uses include redirecting the user to the correct resource in your site, nonces, and cross-site-request-forgery mitigations.

Result Set Columns

Name Type Description
URL String The authorization URL, entered into a Web browser to obtain the verifier token and authorize your app.

CData Python Connector for Zoho Books

ImportCreditCardStatement

Imports your bank/credit card feeds into your account.

Execute

Import your bank/credit card feeds into your account:

INSERT INTO ImportCreditCardStatement#TEMP (TransactionsTransactionId, TransactionsTransactionDate, TransactionsTransactionDebitOrCredit, TransactionsTransactionAmount) VALUES ('3255827000000150156', '2023-03-27', 'Debit', '6000')

EXEC ImportCreditCardStatement AccountId = '3255827000000150152', StartDate= '2023-03-01', EndDate = '2023-03-31', Transactions = ImportCreditCardStatement#TEMP 

EXEC ImportCreditCardStatement AccountId = '3255827000000150152', StartDate = '2023-03-01', EndDate = '2023-03-31', TransactionsTransactionId = 3255827000000150156, TransactionsTransactionDate = 2023-03-27, TransactionsTransactionDebitOrCredit = debit, TransactionsTransactionAmount = 6000

Input

Name Type Required Description
AccountId String True Id of the Bank/Credit Card account
StartDate Date False Least date in the transaction set
EndDate Date False Greatest date in the transaction set
Transactions String False Transactions
TransactionsTransactionId String False Least date in the transaction set
TransactionsTransactionDate Date False Date of the transaction
TransactionsTransactionDebitOrCredit String False Indicates if transaction is Debit or Credit
TransactionsTransactionAmount String False Amount involved in the transaction
TransactionsTransactionPayee String False Payee involved in the transaction
TransactionsTransactionDescription String False Transaction description
TransactionsTransactionReferenceNumber String False Reference Number of the transaction

Result Set Columns

Name Type Description
Status String Stored procedure execution status.

CData Python Connector for Zoho Books

InvoiceBulkInvoiceReminder

Reminds your customer about unpaid invoices by email. A reminder mail is only sent for invoices in an open or overdue status. You can specify a maximum of ten invoices.

Input

Name Type Required Description
InvoiceIds String True Array of invoice ids for which the reminder has to be sent.

Result Set Columns

Name Type Description
Status String Stored procedure execution status.

CData Python Connector for Zoho Books

InvoiceCancelWriteOFFInvoice

Cancels the write-off amount of an invoice.

Input

Name Type Required Description
Id String True Id of Invoice.

Result Set Columns

Name Type Description
Status String Stored procedure execution status.

CData Python Connector for Zoho Books

InvoiceDeleteExpenseReceipt

Deletes attached receipt.

Input

Name Type Required Description
Id String True Id of Expense attached to an invoice.

Result Set Columns

Name Type Description
Status String Stored procedure execution status.

CData Python Connector for Zoho Books

InvoiceEnableOrDisablePaymentReminder

Enables or disables automated payment reminders for an invoice.

Input

Name Type Required Description
Id String True Id of an Invoice.
EntityStatus String True Status such as enable or disable

The allowed values are enable, disable.

Result Set Columns

Name Type Description
Status String Stored procedure execution status.

CData Python Connector for Zoho Books

InvoiceWriteOFFInvoice

Writes off the invoice balance amount of an invoice.

Input

Name Type Required Description
Id String True Id of Invoice.

Result Set Columns

Name Type Description
Status String Stored procedure execution status.

CData Python Connector for Zoho Books

MarkCustomerContactAsPrimary

Updates the status as primary for customer contacts.

Input

Name Type Required Description
Id String True Id of a customer contact.

Result Set Columns

Name Type Description
Status String Stored procedure execution status.

CData Python Connector for Zoho Books

MarkJournalAsPublished

Updates the status of a journal as published.

Input

Name Type Required Description
Id String True Id of a journal.

Result Set Columns

Name Type Description
Status String Stored procedure execution status.

CData Python Connector for Zoho Books

ModifyBankAccountStatus

Updates the status as active or inactive for a bank account.

Input

Name Type Required Description
Id String True Id of a BankAccount.
EntityStatus String True Status to be marked for a bank account- active or inactive.

The allowed values are active, inactive.

Result Set Columns

Name Type Description
Status String Stored procedure execution status.

CData Python Connector for Zoho Books

ModifyBillStatus

Updates the status as void or open for a Bill.

Input

Name Type Required Description
Id String True Id of a Bill.
EntityStatus String True Status to be marked for a Bill- void or open

The allowed values are open, void.

Result Set Columns

Name Type Description
Status String Stored procedure execution status.

CData Python Connector for Zoho Books

ModifyChartofAccountStatus

Updates the status as active or inactive for a chartofaccount.

Input

Name Type Required Description
Id String True Id of a chart of account.
EntityStatus String True Status to be marked for a chart of account- active or inactive.

The allowed values are active, inactive.

Result Set Columns

Name Type Description
Status String Stored procedure execution status.

CData Python Connector for Zoho Books

ModifyContactStatus

Updates the status as active or inactive for a contact.

Input

Name Type Required Description
Id String True Id of a Contact.
EntityStatus String True Status to be marked for a contact- active or inactive.

The allowed values are active, inactive.

Result Set Columns

Name Type Description
Status String Stored procedure execution status.

CData Python Connector for Zoho Books

ModifyCreditNoteStatus

Updates the status as draft, void or open for a CreditNote.

Input

Name Type Required Description
Id String True Id of a CreditNote.
EntityStatus String True Status to be marked for a CreditNote- draft, void or open

The allowed values are draft, void, open.

Result Set Columns

Name Type Description
Status String Stored procedure execution status.

CData Python Connector for Zoho Books

ModifyEstimateStatus

Updates the status as sent, accepted, or declined for estimates.

Input

Name Type Required Description
Id String True Id of an estimate.
EntityStatus String True Status to be marked for an estimate- sent, accepted or declined.

The allowed values are sent, accepted, declined.

Result Set Columns

Name Type Description
Status String Stored procedure execution status.

CData Python Connector for Zoho Books

ModifyInvoiceStatus

Updates the status as sent, void, or draft for an invoice.

Input

Name Type Required Description
Id String True Id of an invoice.
EntityStatus String True Status to be marked for an invoice- sent,void or draft

The allowed values are sent, void, draft.

Result Set Columns

Name Type Description
Status String Stored procedure execution status.

CData Python Connector for Zoho Books

ModifyItemStatus

Updates the status as active or inactive for an item.

Input

Name Type Required Description
Id String True Id of an item.
EntityStatus String True Status to be marked for an item- active or inactive.

The allowed values are active, inactive.

Result Set Columns

Name Type Description
Status String Stored procedure execution status.

CData Python Connector for Zoho Books

ModifyProjectStatus

Updates the status as active or inactive for a project.

Input

Name Type Required Description
Id String True Id of a Project.
EntityStatus String True Status to be marked for a project- active or inactive.

The allowed values are active, inactive.

Result Set Columns

Name Type Description
Status String Stored procedure execution status.

CData Python Connector for Zoho Books

ModifyPurchaseOrderStatus

Updates the status as open, cancelled, or billed for a purchaseorder.

Input

Name Type Required Description
Id String True Id of a PurchaseOrder.
EntityStatus String True Status to be marked for a PurchaseOrder- open, cancelled or billed

The allowed values are open, billed, cancelled.

Result Set Columns

Name Type Description
Status String Stored procedure execution status.

CData Python Connector for Zoho Books

ModifyRecurringBillStatus

Updates the status as stop or resume for a recurring bill.

Input

Name Type Required Description
Id String True Id of a recurringbill.
EntityStatus String True Status to be marked for a recurring bill- stop and resume

The allowed values are stop, resume.

Result Set Columns

Name Type Description
Status String Stored procedure execution status.

CData Python Connector for Zoho Books

ModifyRecurringExpenseStatus

Updates the status as stop or resume for a recurring expense.

Input

Name Type Required Description
Id String True Id of a recurring expense.
EntityStatus String True Status to be marked for a recurring expense- stop and resume

The allowed values are stop, resume.

Result Set Columns

Name Type Description
Status String Stored procedure execution status.

CData Python Connector for Zoho Books

ModifyRecurringInvoiceStatus

Updates the status as stop or resume for a recurring invoice.

Input

Name Type Required Description
Id String True Id of a recurring invoice.
EntityStatus String True Status to be marked for a recurring invoice- stop and resume

The allowed values are stop, resume.

Result Set Columns

Name Type Description
Status String Stored procedure execution status.

CData Python Connector for Zoho Books

ModifyRetainerInvoiceStatus

Updates the status as sent, void, or draft for retainerinvoice.

Input

Name Type Required Description
Id String True Id of a retainerinvoice.
EntityStatus String True Status to be marked for a retainerinvoice- sent,void and draft

The allowed values are sent, void, draft.

Result Set Columns

Name Type Description
Status String Stored procedure execution status.

CData Python Connector for Zoho Books

ModifySalesorderStatus

Updates the status as void or open for a project.

Input

Name Type Required Description
Id String True Id of a Salesorder.
EntityStatus String True Status to be marked for a salesorder- void or open

The allowed values are void, open.

Result Set Columns

Name Type Description
Status String Stored procedure execution status.

CData Python Connector for Zoho Books

ModifyUserStatus

Updates the status as active or inactive for a user.

Input

Name Type Required Description
Id String True Id of a user.
EntityStatus String True Status to be marked for a user- active or inactive.

The allowed values are active, inactive.

Result Set Columns

Name Type Description
Status String Stored procedure execution status.

CData Python Connector for Zoho Books

ModifyVendorCreditStatus

Changes an existing vendor credit status to void or open.

Input

Name Type Required Description
Id String True Id of a vendorcredit.
EntityStatus String True Status to be marked for a vendorcredit- void or open

The allowed values are void, open.

Result Set Columns

Name Type Description
Status String Stored procedure execution status.

CData Python Connector for Zoho Books

ProjectsInviteAUser

Invites a user to the project.

Input

Name Type Required Description
Id String True Id of project.
UserName String True Name of the user. Max-length [200]
Email String True Email of the user. Max-length [100]
UserRole String True Role to be assigned. Allowed Values: staff, admin and timesheetstaff
Rate String False Role to be assigned. Allowed Values: staff, admin and timesheetstaff
BudgetHours String False Task budget hours.
CostRate Decimal False Cost Rate

Result Set Columns

Name Type Description
Status String Stored procedure execution status.

CData Python Connector for Zoho Books

RefreshOAuthAccessToken

Refreshes the OAuth access token used for authentication with ZohoBooks.

Input

Name Type Required Description
OAuthRefreshToken String True Set this to the token value that expired.

Result Set Columns

Name Type Description
OAuthAccessToken String The authentication token returned from ZohoBooks. This can be used in subsequent calls to other operations for this particular service.
OAuthRefreshToken String This is the same as the access token.
ExpiresIn String The remaining lifetime on the access token.

CData Python Connector for Zoho Books

SubmitAnEntityForApproval

Submits an estimate, salesorder, invoice, creditnote, retainerinvoice, purchaseorder, bill, or vendorcredit for approval.

Input

Name Type Required Description
EntityId String True Id of categories like estimate, salesorder, invoice, creditnote, retainerinvoice, purchaseorder, bill or vendorcredit.
EntityName String True Entity Name such as estimate, salesorder, invoice, creditnote, retainerinvoice, purchaseorder, bill or vendorcredit

The allowed values are estimates, salesorders, invoices, creditnotes, retainerinvoices, purchaseorders, bills, vendorcredits.

Result Set Columns

Name Type Description
Status String Stored procedure execution status.

CData Python Connector for Zoho Books

TransactionsUnCategorizeACategorizedTransaction

Reverts a categorized transaction to uncategorized.

Input

Name Type Required Description
Id String True Imported Transaction Id.
AccountId String True Mandatory Account id for which transactions are to be listed.

Result Set Columns

Name Type Description
Status String Stored procedure execution status.

CData Python Connector for Zoho Books

TransactionsUnMatchATransaction

Categorizes an uncategorized transaction.

Input

Name Type Required Description
Id String True Id of a bank transaction.
AccountId String True Mandatory Account id for which transactions are to be listed.

Result Set Columns

Name Type Description
Status String Stored procedure execution status.

CData Python Connector for Zoho Books

UsersInviteAUser

Sends invitation email to a user.

Input

Name Type Required Description
Id String True Id of user.

Result Set Columns

Name Type Description
Status String Stored procedure execution status.

CData Python Connector for Zoho Books

System Tables

You can query the system tables described in this section to access schema information, information on data source functionality, and batch operation statistics.

Schema Tables

The following tables return database metadata for Zoho Books:

Data Source Tables

The following tables return information about how to connect to and query the data source:

  • sys_connection_props: Returns information on the available connection properties.
  • sys_sqlinfo: Describes the SELECT queries that the connector can offload to the data source.

Query Information Tables

The following table returns query statistics for data modification queries

  • sys_identity: Returns information about batch operations or single updates.

CData Python Connector for Zoho Books

sys_catalogs

Lists the available databases.

The following query retrieves all databases determined by the connection string:

SELECT * FROM sys_catalogs

Columns

Name Type Description
CatalogName String The database name.

CData Python Connector for Zoho Books

sys_schemas

Lists the available schemas.

The following query retrieves all available schemas:

          SELECT * FROM sys_schemas
          

Columns

Name Type Description
CatalogName String The database name.
SchemaName String The schema name.

CData Python Connector for Zoho Books

sys_tables

Lists the available tables.

The following query retrieves the available tables and views:

          SELECT * FROM sys_tables
          

Columns

Name Type Description
CatalogName String The database containing the table or view.
SchemaName String The schema containing the table or view.
TableName String The name of the table or view.
TableType String The table type (table or view).
Description String A description of the table or view.
IsUpdateable Boolean Whether the table can be updated.
IsInsertable Boolean Whether the table can be inserted into.
IsDeleteable Boolean Whether rows can be deleted from the table.

CData Python Connector for Zoho Books

sys_tablecolumns

Describes the columns of the available tables and views.

The following query returns the columns and data types for the INVOICES table:

SELECT ColumnName, DataTypeName FROM sys_tablecolumns WHERE TableName = 'INVOICES' 

Columns

Name Type Description
CatalogName String The name of the database containing the table or view.
SchemaName String The schema containing the table or view.
TableName String The name of the table or view containing the column.
ColumnName String The column name.
DataTypeName String The data type name.
DataType Int32 An integer indicating the data type. This value is determined at run time based on the environment.
Length Int32 The storage size of the column.
DisplaySize Int32 The designated column's normal maximum width in characters.
NumericPrecision Int32 The maximum number of digits in numeric data. The column length in characters for character and date-time data.
NumericScale Int32 The column scale or number of digits to the right of the decimal point.
IsNullable Boolean Whether the column can contain null.
Description String A brief description of the column.
Ordinal Int32 The sequence number of the column.
IsAutoIncrement String Whether the column value is assigned in fixed increments.
IsGeneratedColumn String Whether the column is generated.
IsHidden Boolean Whether the column is hidden.
IsArray Boolean Whether the column is an array.
IsReadOnly Boolean Whether the column is read-only.
IsKey Boolean Indicates whether a field returned from sys_tablecolumns is the primary key of the table.
ColumnType String The role or classification of the column in the schema. Possible values include SYSTEM, LINKEDCOLUMN, NAVIGATIONKEY, REFERENCECOLUMN, and NAVIGATIONPARENTCOLUMN.
ColumnCapabilities Int32 A bit mask denoting the column's write capabilities. The value is the sum of the following: 1 if the column is required for INSERTs, 2 if the column is allowed for INSERTs, and 4 if the column is allowed for UPDATEs. A value of 0 indicates that the write capabilities of the column are unknown or that the column is read-only.

CData Python Connector for Zoho Books

sys_procedures

Lists the available stored procedures.

The following query retrieves the available stored procedures:

          SELECT * FROM sys_procedures
          

Columns

Name Type Description
CatalogName String The database containing the stored procedure.
SchemaName String The schema containing the stored procedure.
ProcedureName String The name of the stored procedure.
Description String A description of the stored procedure.
ProcedureType String The type of the procedure, such as PROCEDURE or FUNCTION.

CData Python Connector for Zoho Books

sys_procedureparameters

Describes stored procedure parameters.

The following query returns information about all of the input parameters for the ExpenseReceipt stored procedure:

SELECT * FROM sys_procedureparameters WHERE ProcedureName = 'ExpenseReceipt' AND Direction = 1 OR Direction = 2

To include result set columns in addition to the parameters, set the IncludeResultColumns pseudo column to True:

SELECT * FROM sys_procedureparameters WHERE ProcedureName = 'ExpenseReceipt' AND IncludeResultColumns='True'

Columns

Name Type Description
CatalogName String The name of the database containing the stored procedure.
SchemaName String The name of the schema containing the stored procedure.
ProcedureName String The name of the stored procedure containing the parameter.
ColumnName String The name of the stored procedure parameter.
Direction Int32 An integer corresponding to the type of the parameter: input (1), input/output (2), or output(4). input/output type parameters can be both input and output parameters.
DataType Int32 An integer indicating the data type. This value is determined at run time based on the environment.
DataTypeName String The name of the data type.
NumericPrecision Int32 The maximum precision for numeric data. The column length in characters for character and date-time data.
Length Int32 The number of characters allowed for character data. The number of digits allowed for numeric data.
NumericScale Int32 The number of digits to the right of the decimal point in numeric data.
IsNullable Boolean Whether the parameter can contain null.
IsRequired Boolean Whether the parameter is required for execution of the procedure.
IsArray Boolean Whether the parameter is an array.
Description String The description of the parameter.
Ordinal Int32 The index of the parameter.
Values String The values you can set in this parameter are limited to those shown in this column. Possible values are comma-separated.
SupportsStreams Boolean Whether the parameter represents a file that you can pass as either a file path or a stream.
IsPath Boolean Whether the parameter is a target path for a schema creation operation.
Default String The value used for this parameter when no value is specified.
SpecificName String A label that, when multiple stored procedures have the same name, uniquely identifies each identically-named stored procedure. If there's only one procedure with a given name, its name is simply reflected here.
IsCDataProvided Boolean Whether the procedure is added/implemented by CData, as opposed to being a native Zoho Books procedure.

Pseudo-Columns

Name Type Description
IncludeResultColumns Boolean Whether the output should include columns from the result set in addition to parameters. Defaults to False.

CData Python Connector for Zoho Books

sys_keycolumns

Describes the primary and foreign keys.

The following query retrieves the primary key for the INVOICES table:

         SELECT * FROM sys_keycolumns WHERE IsKey='True' AND TableName='INVOICES' 
          

Columns

Name Type Description
CatalogName String The name of the database containing the key.
SchemaName String The name of the schema containing the key.
TableName String The name of the table containing the key.
ColumnName String The name of the key column.
IsKey Boolean Whether the column is a primary key in the table referenced in the TableName field.
IsForeignKey Boolean Whether the column is a foreign key referenced in the TableName field.
PrimaryKeyName String The name of the primary key.
ForeignKeyName String The name of the foreign key.
ReferencedCatalogName String The database containing the primary key.
ReferencedSchemaName String The schema containing the primary key.
ReferencedTableName String The table containing the primary key.
ReferencedColumnName String The column name of the primary key.

CData Python Connector for Zoho Books

sys_foreignkeys

Describes the foreign keys.

The following query retrieves all foreign keys which refer to other tables:

         SELECT * FROM sys_foreignkeys WHERE ForeignKeyType = 'FOREIGNKEY_TYPE_IMPORT'
          

Columns

Name Type Description
CatalogName String The name of the database containing the key.
SchemaName String The name of the schema containing the key.
TableName String The name of the table containing the key.
ColumnName String The name of the key column.
PrimaryKeyName String The name of the primary key.
ForeignKeyName String The name of the foreign key.
ReferencedCatalogName String The database containing the primary key.
ReferencedSchemaName String The schema containing the primary key.
ReferencedTableName String The table containing the primary key.
ReferencedColumnName String The column name of the primary key.
ForeignKeyType String Designates whether the foreign key is an import (points to other tables) or export (referenced from other tables) key.

CData Python Connector for Zoho Books

sys_primarykeys

Describes the primary keys.

The following query retrieves the primary keys from all tables and views:

         SELECT * FROM sys_primarykeys
          

Columns

Name Type Description
CatalogName String The name of the database containing the key.
SchemaName String The name of the schema containing the key.
TableName String The name of the table containing the key.
ColumnName String The name of the key column.
KeySeq String The sequence number of the primary key.
KeyName String The name of the primary key.

CData Python Connector for Zoho Books

sys_indexes

Describes the available indexes. By filtering on indexes, you can write more selective queries with faster query response times.

The following query retrieves all indexes that are not primary keys:

          SELECT * FROM sys_indexes WHERE IsPrimary='false'
          

Columns

Name Type Description
CatalogName String The name of the database containing the index.
SchemaName String The name of the schema containing the index.
TableName String The name of the table containing the index.
IndexName String The index name.
ColumnName String The name of the column associated with the index.
IsUnique Boolean True if the index is unique. False otherwise.
IsPrimary Boolean True if the index is a primary key. False otherwise.
Type Int16 An integer value corresponding to the index type: statistic (0), clustered (1), hashed (2), or other (3).
SortOrder String The sort order: A for ascending or D for descending.
OrdinalPosition Int16 The sequence number of the column in the index.

CData Python Connector for Zoho Books

sys_connection_props

Returns information on the available connection properties and those set in the connection string.

The following query retrieves all connection properties that have been set in the connection string or set through a default value:

SELECT * FROM sys_connection_props WHERE Value <> ''

Columns

Name Type Description
Name String The name of the connection property.
ShortDescription String A brief description.
Type String The data type of the connection property.
Default String The default value if one is not explicitly set.
Values String A comma-separated list of possible values. A validation error is thrown if another value is specified.
Value String The value you set or a preconfigured default.
Required Boolean Whether the property is required to connect.
Category String The category of the connection property.
IsSessionProperty String Whether the property is a session property, used to save information about the current connection.
Sensitivity String The sensitivity level of the property. This informs whether the property is obfuscated in logging and authentication forms.
PropertyName String A camel-cased truncated form of the connection property name.
Ordinal Int32 The index of the parameter.
CatOrdinal Int32 The index of the parameter category.
Hierarchy String Shows dependent properties associated that need to be set alongside this one.
Visible Boolean Informs whether the property is visible in the connection UI.
ETC String Various miscellaneous information about the property.

CData Python Connector for Zoho Books

sys_sqlinfo

Describes the SELECT query processing that the connector can offload to the data source.

See SQL Compliance for SQL syntax details.

Discovering the Data Source's SELECT Capabilities

Below is an example data set of SQL capabilities. Some aspects of SELECT functionality are returned in a comma-separated list if supported; otherwise, the column contains NO.

NameDescriptionPossible Values
AGGREGATE_FUNCTIONSSupported aggregation functions.AVG, COUNT, MAX, MIN, SUM, DISTINCT
COUNTWhether COUNT function is supported.YES, NO
IDENTIFIER_QUOTE_OPEN_CHARThe opening character used to escape an identifier.[
IDENTIFIER_QUOTE_CLOSE_CHARThe closing character used to escape an identifier.]
SUPPORTED_OPERATORSA list of supported SQL operators.=, >, <, >=, <=, <>, !=, LIKE, NOT LIKE, IN, NOT IN, IS NULL, IS NOT NULL, AND, OR
GROUP_BYWhether GROUP BY is supported, and, if so, the degree of support.NO, NO_RELATION, EQUALS_SELECT, SQL_GB_COLLATE
OJ_CAPABILITIESThe supported varieties of outer joins supported.NO, LEFT, RIGHT, FULL, INNER, NOT_ORDERED, ALL_COMPARISON_OPS
OUTER_JOINSWhether outer joins are supported.YES, NO
SUBQUERIESWhether subqueries are supported, and, if so, the degree of support.NO, COMPARISON, EXISTS, IN, CORRELATED_SUBQUERIES, QUANTIFIED
STRING_FUNCTIONSSupported string functions.LENGTH, CHAR, LOCATE, REPLACE, SUBSTRING, RTRIM, LTRIM, RIGHT, LEFT, UCASE, SPACE, SOUNDEX, LCASE, CONCAT, ASCII, REPEAT, OCTET, BIT, POSITION, INSERT, TRIM, UPPER, REGEXP, LOWER, DIFFERENCE, CHARACTER, SUBSTR, STR, REVERSE, PLAN, UUIDTOSTR, TRANSLATE, TRAILING, TO, STUFF, STRTOUUID, STRING, SPLIT, SORTKEY, SIMILAR, REPLICATE, PATINDEX, LPAD, LEN, LEADING, KEY, INSTR, INSERTSTR, HTML, GRAPHICAL, CONVERT, COLLATION, CHARINDEX, BYTE
NUMERIC_FUNCTIONSSupported numeric functions.ABS, ACOS, ASIN, ATAN, ATAN2, CEILING, COS, COT, EXP, FLOOR, LOG, MOD, SIGN, SIN, SQRT, TAN, PI, RAND, DEGREES, LOG10, POWER, RADIANS, ROUND, TRUNCATE
TIMEDATE_FUNCTIONSSupported date/time functions.NOW, CURDATE, DAYOFMONTH, DAYOFWEEK, DAYOFYEAR, MONTH, QUARTER, WEEK, YEAR, CURTIME, HOUR, MINUTE, SECOND, TIMESTAMPADD, TIMESTAMPDIFF, DAYNAME, MONTHNAME, CURRENT_DATE, CURRENT_TIME, CURRENT_TIMESTAMP, EXTRACT
REPLICATION_SKIP_TABLESIndicates tables skipped during replication.
REPLICATION_TIMECHECK_COLUMNSA string array containing a list of columns which will be used to check for (in the given order) to use as a modified column during replication.
IDENTIFIER_PATTERNString value indicating what string is valid for an identifier.
SUPPORT_TRANSACTIONIndicates if the provider supports transactions such as commit and rollback.YES, NO
DIALECTIndicates the SQL dialect to use.
KEY_PROPERTIESIndicates the properties which identify the uniform database.
SUPPORTS_MULTIPLE_SCHEMASIndicates if multiple schemas may exist for the provider.YES, NO
SUPPORTS_MULTIPLE_CATALOGSIndicates if multiple catalogs may exist for the provider.YES, NO
DATASYNCVERSIONThe CData Data Sync version needed to access this driver.Standard, Starter, Professional, Enterprise
DATASYNCCATEGORYThe CData Data Sync category of this driver.Source, Destination, Cloud Destination
SUPPORTSENHANCEDSQLWhether enhanced SQL functionality beyond what is offered by the API is supported.TRUE, FALSE
SUPPORTS_BATCH_OPERATIONSWhether batch operations are supported.YES, NO
SQL_CAPAll supported SQL capabilities for this driver.SELECT, INSERT, DELETE, UPDATE, TRANSACTIONS, ORDERBY, OAUTH, ASSIGNEDID, LIMIT, LIKE, BULKINSERT, COUNT, BULKDELETE, BULKUPDATE, GROUPBY, HAVING, AGGS, OFFSET, REPLICATE, COUNTDISTINCT, JOINS, DROP, CREATE, DISTINCT, INNERJOINS, SUBQUERIES, ALTER, MULTIPLESCHEMAS, GROUPBYNORELATION, OUTERJOINS, UNIONALL, UNION, UPSERT, GETDELETED, CROSSJOINS, GROUPBYCOLLATE, MULTIPLECATS, FULLOUTERJOIN, MERGE, JSONEXTRACT, BULKUPSERT, SUM, SUBQUERIESFULL, MIN, MAX, JOINSFULL, XMLEXTRACT, AVG, MULTISTATEMENTS, FOREIGNKEYS, CASE, LEFTJOINS, COMMAJOINS, WITH, LITERALS, RENAME, NESTEDTABLES, EXECUTE, BATCH, BASIC, INDEX
PREFERRED_CACHE_OPTIONSA string value specifies the preferred cacheOptions.
ENABLE_EF_ADVANCED_QUERYIndicates if the driver directly supports advanced queries coming from Entity Framework. If not, queries will be handled client side.YES, NO
PSEUDO_COLUMNSA string array indicating the available pseudo columns.
MERGE_ALWAYSIf the value is true, The Merge Mode is forcibly executed in Data Sync.TRUE, FALSE
REPLICATION_MIN_DATE_QUERYA select query to return the replicate start datetime.
REPLICATION_MIN_FUNCTIONAllows a provider to specify the formula name to use for executing a server side min.
REPLICATION_START_DATEAllows a provider to specify a replicate startdate.
REPLICATION_MAX_DATE_QUERYA select query to return the replicate end datetime.
REPLICATION_MAX_FUNCTIONAllows a provider to specify the formula name to use for executing a server side max.
IGNORE_INTERVALS_ON_INITIAL_REPLICATEA list of tables which will skip dividing the replicate into chunks on the initial replicate.
CHECKCACHE_USE_PARENTIDIndicates whether the CheckCache statement should be done against the parent key column.TRUE, FALSE
CREATE_SCHEMA_PROCEDURESIndicates stored procedures that can be used for generating schema files.

The following query retrieves the operators that can be used in the WHERE clause:

SELECT * FROM sys_sqlinfo WHERE Name = 'SUPPORTED_OPERATORS'
Note that individual tables may have different limitations or requirements on the WHERE clause; refer to the Data Model section for more information.

Columns

Name Type Description
NAME String A component of SQL syntax, or a capability that can be processed on the server.
VALUE String Detail on the supported SQL or SQL syntax.

CData Python Connector for Zoho Books

sys_identity

Returns information about attempted modifications.

The following query retrieves the Ids of the modified rows in a batch operation:

         SELECT * FROM sys_identity
          

Columns

Name Type Description
Id String The database-generated Id returned from a data modification operation.
Batch String An identifier for the batch. 1 for a single operation.
Operation String The result of the operation in the batch: INSERTED, UPDATED, or DELETED.
Message String SUCCESS or an error message if the update in the batch failed.

CData Python Connector for Zoho Books

sys_information

Describes the available system information.

The following query retrieves all columns:

SELECT * FROM sys_information

Columns

NameTypeDescription
ProductStringThe name of the product.
VersionStringThe version number of the product.
DatasourceStringThe name of the datasource the product connects to.
NodeIdStringThe unique identifier of the machine where the product is installed.
HelpURLStringThe URL to the product's help documentation.
LicenseStringThe license information for the product. (If this information is not available, the field may be left blank or marked as 'N/A'.)
LocationStringThe file path location where the product's library is stored.
EnvironmentStringThe version of the environment or rumtine the product is currently running under.
DataSyncVersionStringThe tier of CData Sync required to use this connector.
DataSyncCategoryStringThe category of CData Sync functionality (e.g., Source, Destination).

CData Python Connector for Zoho Books

Connection String Options

The connection string properties are the various options that can be used to establish a connection. This section provides a complete list of the options you can configure in the connection string for this provider. Click the links for further details.

For more information on establishing a connection, see Establishing a Connection.

Connection


PropertyDescription
OrganizationIdThe Id associated with the specific Zoho Books organization that you wish to connect to.
IncludeCustomFieldsWhether to include custom fields in views.
RowScanDepthThe maximum number of rows to scan for the custom fields columns available in the table.
IncludeCustomModulesWhether to include user-defined custom modules.
RegionThe Top Level Domain (TLD) in the server URL.

OAuth


PropertyDescription
InitiateOAuthSpecifies the process for obtaining or refreshing the OAuth access token, which maintains user access while an authenticated, authorized user is working.
OAuthClientIdSpecifies the client ID (also known as the consumer key) assigned to your custom OAuth application. This ID is required to identify the application to the OAuth authorization server during authentication.
OAuthClientSecretSpecifies the client secret assigned to your custom OAuth application. This confidential value is used to authenticate the application to the OAuth authorization server. (Custom OAuth applications only.).
OAuthAccessTokenSpecifies the OAuth access token used to authenticate requests to the data source. This token is issued by the authorization server after a successful OAuth exchange.
OAuthSettingsLocationSpecifies the location of the settings file where OAuth values are saved.
CallbackURLIdentifies the URL users return to after authenticating to Zoho Books via OAuth (Custom OAuth applications only).
ScopeSpecifies the scope of the authenticating user's access to the application, to ensure they get appropriate access to data. If a custom OAuth application is needed, this is generally specified at the time the application is created.
OAuthVerifierSpecifies a verifier code returned from the OAuthAuthorizationURL . Used when authenticating to OAuth on a headless server, where a browser can't be launched. Requires both OAuthSettingsLocation and OAuthVerifier to be set.
OAuthRefreshTokenSpecifies the OAuth refresh token used to request a new access token after the original has expired.
OAuthExpiresInSpecifies the duration in seconds, of an OAuth Access Token's lifetime. The token can be reissued to keep access alive as long as the user keeps working.
OAuthTokenTimestampDisplays a Unix epoch timestamp in milliseconds that shows how long ago the current access token was created.

SSL


PropertyDescription
SSLServerCertSpecifies the certificate to be accepted from the server when connecting using TLS/SSL.

Firewall


PropertyDescription
FirewallTypeSpecifies the protocol the provider uses to tunnel traffic through a proxy-based firewall.
FirewallServerIdentifies the IP address, DNS name, or host name of a proxy used to traverse a firewall and relay user queries to network resources.
FirewallPortSpecifies the TCP port to be used for a proxy-based firewall.
FirewallUserIdentifies the user ID of the account authenticating to a proxy-based firewall.
FirewallPasswordSpecifies the password of the user account authenticating to a proxy-based firewall.

Proxy


PropertyDescription
ProxyAutoDetectSpecifies whether the provider checks your system proxy settings for existing proxy server configurations, rather than using a manually specified proxy server.
ProxyServerIdentifies the hostname or IP address of the proxy server through which you want to route HTTP traffic.
ProxyPortIdentifies the TCP port on your specified proxy server that has been reserved for routing HTTP traffic to and from the client.
ProxyAuthSchemeSpecifies the authentication method the provider uses when authenticating to the proxy server specified in the ProxyServer connection property.
ProxyUserProvides the username of a user account registered with the proxy server specified in the ProxyServer connection property.
ProxyPasswordSpecifies the password of the user specified in the ProxyUser connection property.
ProxySSLTypeSpecifies the SSL type to use when connecting to the proxy server specified in the ProxyServer connection property.
ProxyExceptionsSpecifies a semicolon-separated list of destination hostnames or IPs that are exempt from connecting through the proxy server set in the ProxyServer connection property.

Logging


PropertyDescription
LogfileSpecifies the file path to the log file where the provider records its activities, such as authentication, query execution, and connection details.
VerbositySpecifies the verbosity level of the log file, which controls the amount of detail logged. Supported values range from 1 to 5.
LogModulesSpecifies the core modules to include in the log file. Use a semicolon-separated list of module names. By default, all modules are logged.
MaxLogFileSizeSpecifies the maximum size of a single log file in bytes. For example, '10 MB'. When the file reaches the limit, the provider creates a new log file with the date and time appended to the name.
MaxLogFileCountSpecifies the maximum number of log files the provider retains. When the limit is reached, the oldest log file is deleted to make space for a new one.

Schema


PropertyDescription
LocationSpecifies the location of a directory containing schema files that define tables, views, and stored procedures. Depending on your service's requirements, this may be expressed as either an absolute path or a relative path.
BrowsableSchemasOptional setting that restricts the schemas reported to a subset of all available schemas. For example, BrowsableSchemas=SchemaA,SchemaB,SchemaC .
TablesOptional setting that restricts the tables reported to a subset of all available tables. For example, Tables=TableA,TableB,TableC .
ViewsOptional setting that restricts the views reported to a subset of the available tables. For example, Views=ViewA,ViewB,ViewC .

Caching


PropertyDescription
AutoCacheSpecifies whether the content of tables targeted by SELECT queries is automatically cached to the specified cache database.
CacheProviderThe namespace of an ADO.NET provider. The specified provider is used as the target database for all caching operations.
CacheDriverThe driver class of a JDBC driver. The specified driver is used to connect to the target database for all caching operations.
CacheConnectionSpecifies the connection string for the specified cache database.
CacheLocationSpecifies the path to the cache when caching to a file.
CacheToleranceNotes the tolerance, in seconds, for stale data in the specified cache database. Requires AutoCache to be set to True.
OfflineGets the data from the specified cache database instead of live Zoho Books data.
CacheMetadataDetermines whether the provider caches table metadata to a file-based cache database.

Miscellaneous


PropertyDescription
MaxRowsSpecifies the maximum number of rows returned for queries that do not include either aggregation or GROUP BY.
OtherSpecifies advanced connection properties for specialized scenarios. Use this property only under the guidance of our Support team to address specific issues.
PagesizeThe maximum number of results to return per page from Zoho Books.
PseudoColumnsSpecifies the pseudocolumns to expose as table columns, expressed as a string in the format 'TableName=ColumnName;TableName=ColumnName'.
ReadonlyToggles read-only access to Zoho Books from the provider.
RetryWaitTimeThe minimum number of milliseconds the provider will wait to retry a request.
RTKSpecifies the runtime key for licensing the provider. If unset or invalid, the provider defaults to the standard licensing method. This property is only required in environments where the standard licensing method is unsupported or requires a runtime key.
TimeoutSpecifies the maximum time, in seconds, that the provider waits for a server response before throwing a timeout error.
UserDefinedViewsSpecifies a filepath to a JSON configuration file that defines custom views. The provider automatically detects and uses the views specified in this file.
CData Python Connector for Zoho Books

Connection

This section provides a complete list of the Connection properties you can configure in the connection string for this provider.


PropertyDescription
OrganizationIdThe Id associated with the specific Zoho Books organization that you wish to connect to.
IncludeCustomFieldsWhether to include custom fields in views.
RowScanDepthThe maximum number of rows to scan for the custom fields columns available in the table.
IncludeCustomModulesWhether to include user-defined custom modules.
RegionThe Top Level Domain (TLD) in the server URL.
CData Python Connector for Zoho Books

OrganizationId

The Id associated with the specific Zoho Books organization that you wish to connect to.

Data Type

string

Default Value

""

Remarks

In Zoho Books, your business is referred to as an organization. If you have multiple businesses, set each of them up as an individual organization. Each organization is an independent Zoho Books Organization with its own organization Id, base currency, time zone, language, contacts, reports, etc. If the value of Organization Id is not specified in the connection string, then the connector makes a call to get all the available organizations and will select the first organization Id as the default one.

CData Python Connector for Zoho Books

IncludeCustomFields

Whether to include custom fields in views.

Data Type

bool

Default Value

true

Remarks

If set to FALSE, the custom fields of the table are not retrieved. This defaults to true.

CData Python Connector for Zoho Books

RowScanDepth

The maximum number of rows to scan for the custom fields columns available in the table.

Data Type

string

Default Value

"200"

Remarks

Setting a high value may decrease performance. Setting a low value may prevent the data type from being determined properly.

CData Python Connector for Zoho Books

IncludeCustomModules

Whether to include user-defined custom modules.

Data Type

bool

Default Value

false

Remarks

If set to true, the custom modules created by the user are listed. This feature requires a Premium subscription at a minimum.

CData Python Connector for Zoho Books

Region

The Top Level Domain (TLD) in the server URL.

Possible Values

US, Europe, India, Australia, Japan, China, Canada, SA

Data Type

string

Default Value

"US"

Remarks

If your account resides in a domain other than the US, then change the Region accordingly. You only need to supply this when using your own OAuth access token with InitiateOAuth=Off. Otherwise, the Region will be retrieved from the OAuth flow. This table lists all possible values:

Region Domain
US .com
Europe .eu
India .in
Australia .com.au
Japan .jp
China .com.cn
Canada .ca
SA .sa

CData Python Connector for Zoho Books

OAuth

This section provides a complete list of the OAuth properties you can configure in the connection string for this provider.


PropertyDescription
InitiateOAuthSpecifies the process for obtaining or refreshing the OAuth access token, which maintains user access while an authenticated, authorized user is working.
OAuthClientIdSpecifies the client ID (also known as the consumer key) assigned to your custom OAuth application. This ID is required to identify the application to the OAuth authorization server during authentication.
OAuthClientSecretSpecifies the client secret assigned to your custom OAuth application. This confidential value is used to authenticate the application to the OAuth authorization server. (Custom OAuth applications only.).
OAuthAccessTokenSpecifies the OAuth access token used to authenticate requests to the data source. This token is issued by the authorization server after a successful OAuth exchange.
OAuthSettingsLocationSpecifies the location of the settings file where OAuth values are saved.
CallbackURLIdentifies the URL users return to after authenticating to Zoho Books via OAuth (Custom OAuth applications only).
ScopeSpecifies the scope of the authenticating user's access to the application, to ensure they get appropriate access to data. If a custom OAuth application is needed, this is generally specified at the time the application is created.
OAuthVerifierSpecifies a verifier code returned from the OAuthAuthorizationURL . Used when authenticating to OAuth on a headless server, where a browser can't be launched. Requires both OAuthSettingsLocation and OAuthVerifier to be set.
OAuthRefreshTokenSpecifies the OAuth refresh token used to request a new access token after the original has expired.
OAuthExpiresInSpecifies the duration in seconds, of an OAuth Access Token's lifetime. The token can be reissued to keep access alive as long as the user keeps working.
OAuthTokenTimestampDisplays a Unix epoch timestamp in milliseconds that shows how long ago the current access token was created.
CData Python Connector for Zoho Books

InitiateOAuth

Specifies the process for obtaining or refreshing the OAuth access token, which maintains user access while an authenticated, authorized user is working.

Possible Values

OFF, REFRESH, GETANDREFRESH

Data Type

string

Default Value

"OFF"

Remarks

OAuth is an authorization framework that enables applications to obtain limited access to user accounts on an HTTP service. The OAuth flow defines the method to be used for:

  • Logging in users.
  • Exchanging user credentials for an OAuth access token to be used for authentication.
  • Providing limited access to applications.

The options for initiating and maintaining OAuth access are named for the parts of that flow that the connector handles:

OFF The connector provides no automatic OAuth flow initiation. The OAuth flow is handled entirely by the user.
This means that the user must refresh the token manually, and reconnect with an updated OAuthAccessToken property when the current token expires.
GETANDREFRESH The connector handles the entire OAuth flow (both GET and REFRESH). This means that if a token already exists, the connector refreshes it when necessary; if no token currently exists, the connector obtains it by prompting the user to login.
REFRESH The user obtains the OAuth Access Token and sets up the sequence for refreshing the OAuth Access Token. (The user is never prompted to log in to authenticate.) After the user logs in, the connector handles the refresh of the OAuth Access Token.

For more information on how to set up OAuth and use this property when configuring a connection, see Establishing a Connection.

CData Python Connector for Zoho Books

OAuthClientId

Specifies the client ID (also known as the consumer key) assigned to your custom OAuth application. This ID is required to identify the application to the OAuth authorization server during authentication.

Data Type

string

Default Value

""

Remarks

This property is required in two cases:

  • When using a custom OAuth application, such as in web-based authentication flows, service-based authentication, or certificate-based flows that require application registration.
  • If the driver does not provide embedded OAuth credentials.

(When the driver provides embedded OAuth credentials, this value may already be provided by the connector and thus not require manual entry.)

OAuthClientId is generally used alongside other OAuth-related properties such as OAuthClientSecret and OAuthSettingsLocation when configuring an authenticated connection.

OAuthClientId is one of the key connection parameters that need to be set before users can authenticate via OAuth. You can usually find this value in your identity provider’s application registration settings. Look for a field labeled Client ID, Application ID, or Consumer Key.

While the client ID is not considered a confidential value like a client secret, it is still part of your application's identity and should be handled carefully. Avoid exposing it in public repositories or shared configuration files.

For more information on how this property is used when configuring a connection, see Establishing a Connection.

CData Python Connector for Zoho Books

OAuthClientSecret

Specifies the client secret assigned to your custom OAuth application. This confidential value is used to authenticate the application to the OAuth authorization server. (Custom OAuth applications only.).

Data Type

string

Default Value

""

Remarks

This property (sometimes called the application secret or consumer secret) is required when using a custom OAuth application in any flow that requires secure client authentication, such as web-based OAuth, service-based connections, or certificate-based authorization flows. It is not required when using an embedded OAuth application.

The client secret is used during the token exchange step of the OAuth flow, when the driver requests an access token from the authorization server. If this value is missing or incorrect, authentication fails with either an invalid_client or an unauthorized_client error.

OAuthClientSecret is one of the key connection parameters that need to be set before users can authenticate via OAuth. You can obtain this value from your identity provider when registering the OAuth application.

Notes:

  • This value should be stored securely and never exposed in public repositories, scripts, or unsecured environments.
  • Client secrets may also expire after a set period. Be sure to monitor expiration dates and rotate secrets as needed to maintain uninterrupted access.

For more information on how this property is used when configuring a connection, see Establishing a Connection

CData Python Connector for Zoho Books

OAuthAccessToken

Specifies the OAuth access token used to authenticate requests to the data source. This token is issued by the authorization server after a successful OAuth exchange.

Data Type

string

Default Value

""

Remarks

OAuthAccessToken is a temporary credential that authorizes access to protected resources. It is typically returned by the identity provider after the user or client application completes an OAuth authentication flow. This property is most commonly used in automated workflows or custom OAuth implementations where you want to manage token handling outside of the driver.

The OAuth access token has a server-dependent timeout, limiting user access. The timeout is set using the OAuthExpiresIn property. However, it can be reissued between requests to keep access alive as long as the user keeps working.

If InitiateOAuth is set to REFRESH, we recommend that you also set both OAuthExpiresIn and OAuthTokenTimestamp. The connector uses these properties to determine when the token expires so it can refresh most efficiently. If OAuthExpiresIn and OAuthTokenTimestamp are not specified, the connector refreshes the token immediately.

Note: Access tokens should be treated as sensitive credentials and stored securely. Avoid exposing them in logs, scripts, or configuration files that are not access-controlled.

For more information on how this property is used when configuring a connection, see Establishing a Connection.

CData Python Connector for Zoho Books

OAuthSettingsLocation

Specifies the location of the settings file where OAuth values are saved.

Data Type

string

Default Value

"%APPDATA%\\CData\\ZohoBooks Data Provider\\OAuthSettings.txt"

Remarks

Storing OAuth settings in a central location avoids the need for users to enter OAuth connection properties manually each time they log in. It also enables credentials to be shared across connections or processes.

You can store OAuth values in a central file for shared access to those values, in either of the following ways:

  • Set InitiateOAuth to either GETANDREFRESH or REFRESH and specify a filepath to the OAuth settings file.
  • Use memory storage to load the credentials into static memory.

The following sections provide more detail on each of these methods.

Specifying the OAuthSettingsLocation Filepath

The default OAuth setting location is %APPDATA%\\CData\\ZohoBooks Data Provider\\OAuthSettings.txt, with %APPDATA% set to the user's configuration directory. Default values vary, depending on the user's operating system.

  • Windows (ODBC and Power BI): registry://%DSN%
  • Windows: %APPDATA%CDataZohoBooks Data Provider\OAuthSettings.txt
  • Mac: %APPDATA%/CData/ZohoBooks Data Provider/OAuthSettings.txt
  • Linux: %APPDATA%/CData/ZohoBooks Data Provider/OAuthSettings.txt

Loading Credentials Via Memory Storage

Memory locations are specified by using a value starting with memory://, followed by a unique identifier for that set of credentials (for example, memory://user1). The identifier can be anything you choose, but it should be unique to the user.

Unlike file-based storage, where credentials persist across connections, memory storage loads the credentials into static memory and the credentials are shared between connections using the same identifier for the life of the process. To persist credentials outside the current process, you must manually store the credentials prior to closing the connection. This enables you to set them in the connection when the process is started again.

To retrieve OAuth property values, query the sys_connection_props system table. If there are multiple connections using the same credentials, the properties are read from the previously closed connection.

Supported Storage Types

  • memory://: Stores OAuth tokens in-memory (unique identifier, shared within same process, etc.)
  • registry://: Only supported in the Windows ODBC and Power BI editions. Stores OAuth tokens in the registry under the DSN settings. Must end in a DSN name like registry://CData Python Connector for Zoho Books Data Source, or registry://%DSN%.
  • %DSN%: The name of the DSN you are connecting with.
  • Default (no prefix): Stores OAuth tokens within files. The value can be either an absolute path, or a path starting with %APPDATA% or %PROGRAMFILES%.

For more information on how this property is used when configuring a connection, see Establishing a Connection.

CData Python Connector for Zoho Books

CallbackURL

Identifies the URL users return to after authenticating to Zoho Books via OAuth (Custom OAuth applications only).

Data Type

string

Default Value

""

Remarks

If you created a custom OAuth application, the OAuth authorization server redirects the user to this URL during the authentication process. This value must match the callback URL you specified when you configured the custom OAuth application.

CData Python Connector for Zoho Books

Scope

Specifies the scope of the authenticating user's access to the application, to ensure they get appropriate access to data. If a custom OAuth application is needed, this is generally specified at the time the application is created.

Data Type

string

Default Value

""

Remarks

Scopes are set to define what kind of access the authenticating user will have; for example, read, read and write, restricted access to sensitive information. System administrators can use scopes to selectively enable access by functionality or security clearance.

When InitiateOAuth is set to GETANDREFRESH, you must use this property if you want to change which scopes are requested.

When InitiateOAuth is set to either REFRESH or OFF, you can change which scopes are requested using either this property or the Scope input.

CData Python Connector for Zoho Books

OAuthVerifier

Specifies a verifier code returned from the OAuthAuthorizationURL . Used when authenticating to OAuth on a headless server, where a browser can't be launched. Requires both OAuthSettingsLocation and OAuthVerifier to be set.

Data Type

string

Default Value

""

Remarks

For detailed instructions about how to obtain the OAuthVerifier value, see Establishing a Connection.

CData Python Connector for Zoho Books

OAuthRefreshToken

Specifies the OAuth refresh token used to request a new access token after the original has expired.

Data Type

string

Default Value

""

Remarks

The refresh token is used to obtain a new access token when the current one expires. It enables seamless authentication for long-running or automated workflows without requiring the user to log in again. This property is especially important in headless, CI/CD, or server-based environments where interactive authentication is not possible.

The refresh token is typically obtained during the initial OAuth exchange by calling the GetOAuthAccessToken stored procedure. After that, it can be set using this property to enable automatic token refresh, or passed to the RefreshOAuthAccessTokenproc; stored procedure if you prefer to manage the refresh manually.

When InitiateOAuth is set to REFRESH, the driver uses this token to retrieve a new access token automatically. After the first refresh, the driver saves updated tokens in the location defined by OAuthSettingsLocation, and uses those values for subsequent connections.

Note: The OAuthRefreshToken should be handled securely and stored in a trusted location. Like access tokens, refresh tokens can expire or be revoked depending on the identity provider’s policies.

For more information on how this property is used when configuring a connection, see Establishing a Connection.

CData Python Connector for Zoho Books

OAuthExpiresIn

Specifies the duration in seconds, of an OAuth Access Token's lifetime. The token can be reissued to keep access alive as long as the user keeps working.

Data Type

string

Default Value

""

Remarks

The OAuth Access Token is assigned to an authenticated user, granting that user access to the network for a specified period of time. The access token is used in place of the user's login ID and password, which stay on the server.

An access token created by the server is only valid for a limited time. OAuthExpiresIn is the number of seconds the token is valid from when it was created. For example, a token generated at 2024-01-29 20:00:00 UTC that expires at 2024-01-29 21:00:00 UTC (an hour later) would have an OAuthExpiresIn value of 3600, no matter what the current time is.

To determine how long the user has before the Access Token will expire, check OAuthTokenTimestamp.

CData Python Connector for Zoho Books

OAuthTokenTimestamp

Displays a Unix epoch timestamp in milliseconds that shows how long ago the current access token was created.

Data Type

string

Default Value

""

Remarks

The OAuth access token is assigned to an authenticated user, granting that user access to the network for a specified period of time. The access token is used in place of the user's login ID and password, which stay on the server.

An access token created by the server is only valid for a limited time. OAuthTokenTimestamp is the Unix timestamp when the server created the token. For example, OAuthTokenTimestamp=1706558400 indicates the OAuthAccessToken was generated by the server at 2024-01-29 20:00:00 UTC.

CData Python Connector for Zoho Books

SSL

This section provides a complete list of the SSL properties you can configure in the connection string for this provider.


PropertyDescription
SSLServerCertSpecifies the certificate to be accepted from the server when connecting using TLS/SSL.
CData Python Connector for Zoho Books

SSLServerCert

Specifies the certificate to be accepted from the server when connecting using TLS/SSL.

Data Type

string

Default Value

""

Remarks

If you are using a TLS/SSL connection, use this property to specify the TLS/SSL certificate to be accepted from the server. If you specify a value for this property, all other certificates that are not trusted by the machine are rejected.

This property can take the following forms:

Description Example
A full PEM Certificate (example shortened for brevity) -----BEGIN CERTIFICATE-----
MIIChTCCAe4CAQAwDQYJKoZIhv......Qw==
-----END CERTIFICATE-----
A path to a local file containing the certificate C:\cert.cer
The public key (example shortened for brevity) -----BEGIN RSA PUBLIC KEY-----
MIGfMA0GCSq......AQAB
-----END RSA PUBLIC KEY-----
The MD5 Thumbprint (hex values can also be either space- or colon-separated) ecadbdda5a1529c58a1e9e09828d70e4
The SHA1 Thumbprint (hex values can also be either space- or colon-separated) 34a929226ae0819f2ec14b4a3d904f801cbb150d

Note: It is possible to use '*' to signify that all certificates should be accepted, but due to security concerns this is not recommended.

CData Python Connector for Zoho Books

Firewall

This section provides a complete list of the Firewall properties you can configure in the connection string for this provider.


PropertyDescription
FirewallTypeSpecifies the protocol the provider uses to tunnel traffic through a proxy-based firewall.
FirewallServerIdentifies the IP address, DNS name, or host name of a proxy used to traverse a firewall and relay user queries to network resources.
FirewallPortSpecifies the TCP port to be used for a proxy-based firewall.
FirewallUserIdentifies the user ID of the account authenticating to a proxy-based firewall.
FirewallPasswordSpecifies the password of the user account authenticating to a proxy-based firewall.
CData Python Connector for Zoho Books

FirewallType

Specifies the protocol the provider uses to tunnel traffic through a proxy-based firewall.

Possible Values

NONE, TUNNEL, SOCKS4, SOCKS5

Data Type

string

Default Value

"NONE"

Remarks

A proxy-based firewall (or proxy firewall) is a network security device that acts as an intermediary between user requests and the resources they access. The proxy accepts the request of an authenticated user, tunnels through the firewall, and transmits the request to the appropriate server.

Because the proxy evaluates and transfers data backets on behalf of the requesting users, the users never connect directly with the servers, only with the proxy.

Note: By default, the connector connects to the system proxy. To disable this behavior and connect to one of the following proxy types, set ProxyAutoDetect to false.

The following table provides port number information for each of the supported protocols.

Protocol Default Port Description
TUNNEL 80 The port where the connector opens a connection to Zoho Books. Traffic flows back and forth via the proxy at this location.
SOCKS4 1080 The port where the connector opens a connection to Zoho Books. SOCKS 4 then passes theFirewallUser value to the proxy, which determines whether the connection request should be granted.
SOCKS5 1080 The port where the connector sends data to Zoho Books. If the SOCKS 5 proxy requires authentication, set FirewallUser and FirewallPassword to credentials the proxy recognizes.

To connect to HTTP proxies, use ProxyServer and ProxyPort. To authenticate to HTTP proxies, use ProxyAuthScheme, ProxyUser, and ProxyPassword.

CData Python Connector for Zoho Books

FirewallServer

Identifies the IP address, DNS name, or host name of a proxy used to traverse a firewall and relay user queries to network resources.

Data Type

string

Default Value

""

Remarks

A proxy-based firewall (or proxy firewall) is a network security device that acts as an intermediary between user requests and the resources they access. The proxy accepts the request of an authenticated user, tunnels through the firewall, and transmits the request to the appropriate server.

Because the proxy evaluates and transfers data backets on behalf of the requesting users, the users never connect directly with the servers, only with the proxy.

CData Python Connector for Zoho Books

FirewallPort

Specifies the TCP port to be used for a proxy-based firewall.

Data Type

int

Default Value

0

Remarks

A proxy-based firewall (or proxy firewall) is a network security device that acts as an intermediary between user requests and the resources they access. The proxy accepts the request of an authenticated user, tunnels through the firewall, and transmits the request to the appropriate server.

Because the proxy evaluates and transfers data backets on behalf of the requesting users, the users never connect directly with the servers, only with the proxy.

CData Python Connector for Zoho Books

FirewallUser

Identifies the user ID of the account authenticating to a proxy-based firewall.

Data Type

string

Default Value

""

Remarks

A proxy-based firewall (or proxy firewall) is a network security device that acts as an intermediary between user requests and the resources they access. The proxy accepts the request of an authenticated user, tunnels through the firewall, and transmits the request to the appropriate server.

Because the proxy evaluates and transfers data backets on behalf of the requesting users, the users never connect directly with the servers, only with the proxy.

CData Python Connector for Zoho Books

FirewallPassword

Specifies the password of the user account authenticating to a proxy-based firewall.

Data Type

string

Default Value

""

Remarks

A proxy-based firewall (or proxy firewall) is a network security device that acts as an intermediary between user requests and the resources they access. The proxy accepts the request of an authenticated user, tunnels through the firewall, and transmits the request to the appropriate server.

Because the proxy evaluates and transfers data backets on behalf of the requesting users, the users never connect directly with the servers, only with the proxy.

CData Python Connector for Zoho Books

Proxy

This section provides a complete list of the Proxy properties you can configure in the connection string for this provider.


PropertyDescription
ProxyAutoDetectSpecifies whether the provider checks your system proxy settings for existing proxy server configurations, rather than using a manually specified proxy server.
ProxyServerIdentifies the hostname or IP address of the proxy server through which you want to route HTTP traffic.
ProxyPortIdentifies the TCP port on your specified proxy server that has been reserved for routing HTTP traffic to and from the client.
ProxyAuthSchemeSpecifies the authentication method the provider uses when authenticating to the proxy server specified in the ProxyServer connection property.
ProxyUserProvides the username of a user account registered with the proxy server specified in the ProxyServer connection property.
ProxyPasswordSpecifies the password of the user specified in the ProxyUser connection property.
ProxySSLTypeSpecifies the SSL type to use when connecting to the proxy server specified in the ProxyServer connection property.
ProxyExceptionsSpecifies a semicolon-separated list of destination hostnames or IPs that are exempt from connecting through the proxy server set in the ProxyServer connection property.
CData Python Connector for Zoho Books

ProxyAutoDetect

Specifies whether the provider checks your system proxy settings for existing proxy server configurations, rather than using a manually specified proxy server.

Data Type

bool

Default Value

true

Remarks

When this connection property is set to True, the connector checks your system proxy settings for existing proxy server configurations (no need to manually supply proxy server details).

This connection property takes precedence over other proxy settings. If you want to configure the connector to connect to a specific proxy server, set ProxyAutoDetect to False.

On Windows, the connector reads the proxy settings from the Internet Options in the registry, specifically the registry key HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\. On Windows 10 and later, this corresponds to the Proxy Settings found in the Windows Settings.

Note that these settings apply only to the current user of the machine. If you're running an application as a service, the connector does not read your own user's settings. You must instead manually supply the proxy settings in the connector's connection properties.

On Mac, the connector reads proxy settings from the system-configured CFNetwork settings.

On Linux, this property is unsupported, and is set to False by default.

To connect to an HTTP proxy, see ProxyServer. For other proxies, such as SOCKS or tunneling, see FirewallType.

CData Python Connector for Zoho Books

ProxyServer

Identifies the hostname or IP address of the proxy server through which you want to route HTTP traffic.

Data Type

string

Default Value

""

Remarks

The connector only routes HTTP traffic through the proxy server specified in this connection property when ProxyAutoDetect is set to False.

If ProxyAutoDetect is set to True (the default), the connector instead routes HTTP traffic through the proxy server specified in your system proxy settings.

CData Python Connector for Zoho Books

ProxyPort

Identifies the TCP port on your specified proxy server that has been reserved for routing HTTP traffic to and from the client.

Data Type

int

Default Value

80

Remarks

The connector only routes HTTP traffic through the ProxyServer port specified in this connection property when ProxyAutoDetect is set to False.

If ProxyAutoDetect is set to True (the default), the connector instead routes HTTP traffic through the proxy server port specified in your system proxy settings.

For other proxy types, see FirewallType.

CData Python Connector for Zoho Books

ProxyAuthScheme

Specifies the authentication method the provider uses when authenticating to the proxy server specified in the ProxyServer connection property.

Possible Values

BASIC, DIGEST, NONE, NEGOTIATE, NTLM

Data Type

string

Default Value

"BASIC"

Remarks

Note: The connector only uses this ProxyAuthScheme when ProxyAutoDetect is set to False. If ProxyAutoDetect is set to True (the default), the connector instead uses the authentication method specified in your system proxy settings.

Supported authentication types :

  • BASIC: The connector performs HTTP basic authentication.
  • DIGEST: The connector performs HTTP digest authentication.
  • NTLM: The connector retrieves an NTLM token.
  • NEGOTIATE: The connector retrieves an NTLM or Kerberos token based on the applicable protocol for authentication.
  • NONE: Signifies that the ProxyServer does not require authentication.

For all values other than NONE, you must also set the ProxyUser and ProxyPassword connection properties.

If you need to use another authentication type, such as SOCKS 5 authentication, see FirewallType.

CData Python Connector for Zoho Books

ProxyUser

Provides the username of a user account registered with the proxy server specified in the ProxyServer connection property.

Data Type

string

Default Value

""

Remarks

The ProxyUser and ProxyPassword connection properties are used to connect and authenticate against the HTTP proxy specified in ProxyServer.

After selecting one of the available authentication types in ProxyAuthScheme, set this property as follows:

ProxyAuthScheme Value Value to set for ProxyUser
BASIC The username of a user registered with the proxy server.
DIGEST The username of a user registered with the proxy server.
NEGOTIATE The username of a Windows user who is a valid user in the domain or trusted domain that the proxy server is part of, in the format user@domain or domain\user.
NTLM The username of a Windows user who is a valid user in the domain or trusted domain that the proxy server is part of, in the format user@domain or domain\user.
NONE Do not set the ProxyPassword connection property.

Note: The connector only uses this username if ProxyAutoDetect is set to False. If ProxyAutoDetect is set to True (the default), the connector instead uses the username specified in your system proxy settings.

CData Python Connector for Zoho Books

ProxyPassword

Specifies the password of the user specified in the ProxyUser connection property.

Data Type

string

Default Value

""

Remarks

The ProxyUser and ProxyPassword connection properties are used to connect and authenticate against the HTTP proxy specified in ProxyServer.

After selecting one of the available authentication types in ProxyAuthScheme, set this property as follows:

ProxyAuthScheme Value Value to set for ProxyPassword
BASIC The password associated with the proxy server user specified in ProxyUser.
DIGEST The password associated with the proxy server user specified in ProxyUser.
NEGOTIATE The password associated with the Windows user account specified in ProxyUser.
NTLM The password associated with the Windows user account specified in ProxyUser.
NONE Do not set the ProxyPassword connection property.

For SOCKS 5 authentication or tunneling, see FirewallType.

Note: The connector only uses this password if ProxyAutoDetect is set to False. If ProxyAutoDetect is set to True (the default), the connector instead uses the password specified in your system proxy settings.

CData Python Connector for Zoho Books

ProxySSLType

Specifies the SSL type to use when connecting to the proxy server specified in the ProxyServer connection property.

Possible Values

AUTO, ALWAYS, NEVER, TUNNEL

Data Type

string

Default Value

"AUTO"

Remarks

This property determines when to use SSL for the connection to the HTTP proxy specified by ProxyServer. You can set this connection property to the following values :

AUTODefault setting. If ProxyServer is set to an HTTPS URL, the connector uses the TUNNEL option. If ProxyServer is set to an HTTP URL, the component uses the NEVER option.
ALWAYSThe connection is always SSL enabled.
NEVERThe connection is not SSL enabled.
TUNNELThe connection is made through a tunneling proxy. The proxy server opens a connection to the remote host and traffic flows back and forth through the proxy.

CData Python Connector for Zoho Books

ProxyExceptions

Specifies a semicolon-separated list of destination hostnames or IPs that are exempt from connecting through the proxy server set in the ProxyServer connection property.

Data Type

string

Default Value

""

Remarks

The ProxyServer is used for all addresses, except for addresses defined in this property. Use semicolons to separate entries.

Note: The connector uses the system proxy settings by default, without further configuration needed. If you want to explicitly configure proxy exceptions for this connection, set ProxyAutoDetect to False.

CData Python Connector for Zoho Books

Logging

This section provides a complete list of the Logging properties you can configure in the connection string for this provider.


PropertyDescription
LogfileSpecifies the file path to the log file where the provider records its activities, such as authentication, query execution, and connection details.
VerbositySpecifies the verbosity level of the log file, which controls the amount of detail logged. Supported values range from 1 to 5.
LogModulesSpecifies the core modules to include in the log file. Use a semicolon-separated list of module names. By default, all modules are logged.
MaxLogFileSizeSpecifies the maximum size of a single log file in bytes. For example, '10 MB'. When the file reaches the limit, the provider creates a new log file with the date and time appended to the name.
MaxLogFileCountSpecifies the maximum number of log files the provider retains. When the limit is reached, the oldest log file is deleted to make space for a new one.
CData Python Connector for Zoho Books

Logfile

Specifies the file path to the log file where the provider records its activities, such as authentication, query execution, and connection details.

Data Type

string

Default Value

""

Remarks

This property specifies the location and name of the log file where the connector records its operations, including authentication events, query execution, and connection details. If the specified file does not exist, the connector creates it. Ensure that the user or the service running the connector has write access to the specified path or file. Without sufficient permissions, the log file is not created.

Sensitive information from the connection string, such as passwords and tokens, is automatically masked in the logs. However, sensitive information present in the data itself may not be masked.

If you specify a relative path for Logfile, and if the Location property is set, that directory is used as the base path for the log file.

Additional properties allow you to customize logging behavior:

CData Python Connector for Zoho Books

Verbosity

Specifies the verbosity level of the log file, which controls the amount of detail logged. Supported values range from 1 to 5.

Data Type

string

Default Value

"1"

Remarks

This property defines the level of detail the connector includes in the log file. Higher verbosity levels increase the detail of the logged information, but may also result in larger log files and slower performance due to the additional data being captured.

The default verbosity level is 1, which is recommended for regular operation. Higher verbosity levels are primarily intended for debugging purposes. For more information on each level, refer to Logging.

When combined with the LogModules property, Verbosity can refine logging to specific categories of information.

CData Python Connector for Zoho Books

LogModules

Specifies the core modules to include in the log file. Use a semicolon-separated list of module names. By default, all modules are logged.

Data Type

string

Default Value

""

Remarks

The connector writes details about each operation it performs into the logfile specified by the Logfile connection property.

Each of these logged operations are assigned to a themed category called a module, and each module has a corresponding short code used to labels individual connector operations as belonging to that module.

When this connection property is set to a semicolon-separated list of module codes, only operations belonging to the specified modules are written to the logfile. Note that this only affects which operations are logged moving forward and doesn't retroactively alter the existing contents of the logfile. For example: INFO;EXEC;SSL;META;

By default, logged operations from all modules are included.

You can explicitly exclude a module by prefixing it with a "-". For example: -HTTP

To apply filters to submodules, identify them with the syntax <module name>.<submodule name>. For example, the following value causes the connector to only log actions belonging to the HTTP module, and further refines it to exclude actions belonging to the Res submodule of the HTTP module: HTTP;-HTTP.Res

Note that the logfile filtering triggered by the Verbosity connection property takes precedence over the filtering imposed by this connection property. This means that operations of a higher verbosity level than the level specified in the Verbosity connection property are not printed in the logfile, even if they belong to one of the modules specified in this connection property.

The available modules and submodules are:

Module Name Module Description Submodules
INFO General Information. Includes the connection string, product version (build number), and initial connection messages.
  • Connec – Information related to creating or destroying connections.
  • Messag – Generic label for messages pertaining to connections, the connection string, and product version. These messages are typically specific to the connector, rather than being received and passed along directly from the service.
EXEC Query Execution. Includes execution messages for user-written SQL queries, parsed SQL queries, and normalized SQL queries. Success/failure messages for queries and query pages appear here as well.
  • Messag – Messages pertaining to query execution. These messages are typically specific to the connector, rather than being received and passed along directly from the service.
  • Normlz – Query normalization steps. Query normalization is when the product takes the user-submitted query and rewrites the query to get the same results with optimal performance.
  • Origin – This label applies to any messages recording a user's original query (the exact, unaltered, non-normalized query executed by the user).
  • Page – Messages related to query paging.
  • Parsed – Query parsing steps. Parsing is the process of converting the user-submitted query into a standardized format for easier processing.
HTTP HTTP protocol messages. Includes HTTP requests/responses (including POST messages), as well as Kerberos related messages.
  • KERB – HTTP requests related to Kerberos.
  • Messag – Messages pertaining to HTTP protocols. These messages are typically specific to the connector, rather than being received and passed along directly from the service.
  • Unpack – This label applies to messages about zipped data being returned from the service API and unpacked by the product.
  • Res – Messages containing HTTP responses.
  • Req – Messages containing HTTP requests.
WSDL Messages pertaining to the generation of WSDL/XSD files.
SSL SSL certificate messages.
  • Certif – Messages pertaining to SSL certificates.
AUTH Authentication related failure/success messages.
  • Messag – Messages pertaining to authentication. These messages are typically specific to the connector, rather than being received and passed along directly from the service.
  • OAuth – Messages related to OAuth authentication.
  • Krbros – Kerberos-related authentication messages.
SQL Includes SQL transactions, SQL bulk transfer messages, and SQL result set messages.
  • Bulk – Messages pertaining to bulk query execution.
  • Cache – Messages related to reading row data from and writing row data to the product's cache for better performance.
  • Messag – Messages pertaining to SQL transactions. These messages are typically specific to the connector, rather than being received and passed along directly from the service.
  • ResSet – Query resultsets.
  • Transc – Messages related to handling transactions, including information about the number of jobs executed and backup table handling.
META Metadata cache and schema messages.
  • Cache – Messages related to reading from and modifying column and table definitions in the product's cache for better performance.
  • Schema – Messages related to retrieving metadata from or modifying the service schema.
  • MemSto – Messages related to writing to or reading from in-memory metadata cache.
  • Storag – Messages relating to storing metadata on disk or in an external data store, rather than in memory.
FUNC Information related to executing SQL functions.
  • Errmsg – Error messages related to executing SQL functions.
TCP Incoming and outgoing raw bytes on TCP transport layer messages.
  • Send – Raw data sent via the TCP protocol.
  • Receiv – Raw data received via the TCP protocol.
FTP Messages pertaining to the File Transfer Protocol.
  • Info – Status messages related to communication in the FTP protocol.
  • Client – Messages related to actions taken by the FTP client (the product) during FTP communication.
  • Server – Messages related to actions taken by the FTP server during FTP communication.
SFTP Messages pertaining to the Secure File Transfer Protocol.
  • Info – Status messages related to communication in the SFTP protocol.
  • To_Server – Messages related to actions taken by the SFTP client (the product) during SFTP communication.
  • From_Server – Messages related to actions taken by the SFTP server during SFTP communication.
POP Messages pertaining to data transferred via the Post Office Protocol.
  • Client – Messages related to actions taken by the POP client (the product) during POP communication.
  • Server – Messages related to actions taken by the POP server during POP communication.
  • Status – Status messages related to communication in the POP protocol.
SMTP Messages pertaining to data transferred via the Simple Mail Transfer Protocol.
  • Client – Messages related to actions taken by the SMTP client (the product) during SMTP communication.
  • Server – Messages related to actions taken by the SMTP server during SMTP communication.
  • Status – Status messages related to communication in the SMTP protocol.
CORE Messages relating to various internal product operations not covered by other modules.
DEMN Messages related to SQL remoting.
CLJB Messages about bulk data uploads (cloud job).
  • Commit – Submissions for bulk data uploads.
SRCE Miscellaneous messages produced by the product that don't belong in any other module.
TRANCE Advanced messages concerning low-level product operations.

CData Python Connector for Zoho Books

MaxLogFileSize

Specifies the maximum size of a single log file in bytes. For example, '10 MB'. When the file reaches the limit, the provider creates a new log file with the date and time appended to the name.

Data Type

string

Default Value

"100MB"

Remarks

For values lower than 100 KB, the connector uses 100 KB as the minimum allowable size.

To control the total number of log files retained, use the MaxLogFileCount property in conjunction with this property. Together, these properties allow you to manage the size and retention of log files effectively.

CData Python Connector for Zoho Books

MaxLogFileCount

Specifies the maximum number of log files the provider retains. When the limit is reached, the oldest log file is deleted to make space for a new one.

Data Type

int

Default Value

-1

Remarks

Each log file name includes the date and time for easier identification.

This property accepts the following values:

  • A value of 2 or higher sets the maximum number of log files retained.
  • A value of 1 retains only one log file. When it reaches the maximum size, the file is deleted and replaced by a new one, leaving no history beyond the current log.
  • A value of 0 or negative indicates no limit on the number of log files, and logging continues indefinitely.

To manage log file size, use the MaxLogFileSize property. The two properties work together to control the size and retention of log files in the logging folder.

CData Python Connector for Zoho Books

Schema

This section provides a complete list of the Schema properties you can configure in the connection string for this provider.


PropertyDescription
LocationSpecifies the location of a directory containing schema files that define tables, views, and stored procedures. Depending on your service's requirements, this may be expressed as either an absolute path or a relative path.
BrowsableSchemasOptional setting that restricts the schemas reported to a subset of all available schemas. For example, BrowsableSchemas=SchemaA,SchemaB,SchemaC .
TablesOptional setting that restricts the tables reported to a subset of all available tables. For example, Tables=TableA,TableB,TableC .
ViewsOptional setting that restricts the views reported to a subset of the available tables. For example, Views=ViewA,ViewB,ViewC .
CData Python Connector for Zoho Books

Location

Specifies the location of a directory containing schema files that define tables, views, and stored procedures. Depending on your service's requirements, this may be expressed as either an absolute path or a relative path.

Data Type

string

Default Value

"%APPDATA%\\CData\\ZohoBooks Data Provider\\Schema"

Remarks

The Location property is only needed if you want to either customize definitions (for example, change a column name, ignore a column, etc.) or extend the data model with new tables, views, or stored procedures.

If left unspecified, the default location is %APPDATA%\\CData\\ZohoBooks Data Provider\\Schema, where %APPDATA% is set to the user's configuration directory:

Platform %APPDATA%
Windows The value of the APPDATA environment variable
Linux ~/.config

CData Python Connector for Zoho Books

BrowsableSchemas

Optional setting that restricts the schemas reported to a subset of all available schemas. For example, BrowsableSchemas=SchemaA,SchemaB,SchemaC .

Data Type

string

Default Value

""

Remarks

Listing all available database schemas can take extra time, thus degrading performance. Providing a list of schemas in the connection string saves time and improves performance.

CData Python Connector for Zoho Books

Tables

Optional setting that restricts the tables reported to a subset of all available tables. For example, Tables=TableA,TableB,TableC .

Data Type

string

Default Value

""

Remarks

Listing all available tables from some databases can take extra time, thus degrading performance. Providing a list of tables in the connection string saves time and improves performance.

If there are lots of tables available and you already know which ones you want to work with, you can use this property to restrict your viewing to only those tables. To do this, specify the tables you want in a comma-separated list. Each table should be a valid SQL identifier with any special characters escaped using square brackets, double-quotes or backticks. For example, Tables=TableA,[TableB/WithSlash],WithCatalog.WithSchema.`TableC With Space`.

Note: If you are connecting to a data source with multiple schemas or catalogs, you must specify each table you want to view by its fully qualified name. This avoids ambiguity between tables that may exist in multiple catalogs or schemas.

CData Python Connector for Zoho Books

Views

Optional setting that restricts the views reported to a subset of the available tables. For example, Views=ViewA,ViewB,ViewC .

Data Type

string

Default Value

""

Remarks

Listing all available views from some databases can take extra time, thus degrading performance. Providing a list of views in the connection string saves time and improves performance.

If there are lots of views available and you already know which ones you want to work with, you can use this property to restrict your viewing to only those views. To do this, specify the views you want in a comma-separated list. Each view should be a valid SQL identifier with any special characters escaped using square brackets, double-quotes or backticks. For example, Views=ViewA,[ViewB/WithSlash],WithCatalog.WithSchema.`ViewC With Space`.

Note: If you are connecting to a data source with multiple schemas or catalogs, you must specify each view you want to examine by its fully qualified name. This avoids ambiguity between views that may exist in multiple catalogs or schemas.

CData Python Connector for Zoho Books

Caching

This section provides a complete list of the Caching properties you can configure in the connection string for this provider.


PropertyDescription
AutoCacheSpecifies whether the content of tables targeted by SELECT queries is automatically cached to the specified cache database.
CacheProviderThe namespace of an ADO.NET provider. The specified provider is used as the target database for all caching operations.
CacheDriverThe driver class of a JDBC driver. The specified driver is used to connect to the target database for all caching operations.
CacheConnectionSpecifies the connection string for the specified cache database.
CacheLocationSpecifies the path to the cache when caching to a file.
CacheToleranceNotes the tolerance, in seconds, for stale data in the specified cache database. Requires AutoCache to be set to True.
OfflineGets the data from the specified cache database instead of live Zoho Books data.
CacheMetadataDetermines whether the provider caches table metadata to a file-based cache database.
CData Python Connector for Zoho Books

AutoCache

Specifies whether the content of tables targeted by SELECT queries is automatically cached to the specified cache database.

Data Type

bool

Default Value

false

Remarks

When this connection property is set to True, the connector automatically caches the contents of tables targeted by SELECT queries. The content of these tables is cached to the cache database specified by the CacheConnection and CacheProvider connection properties.

See Also

For additional information, see:

  • CacheMetadata: With CacheMetadata enabled, all retrieved metadata is mirrored in the cache database. This means that any subsequent attempts by the connector to discover metadata are much faster, as this metadata is then read directly from the cache database, without needing to spend time requesting metadata from Zoho Books.
  • Explicitly Caching Data: This topic provides examples for using AutoCache in Offline mode.
  • CACHE Statements: You can use the CACHE statement to explicitly cache the content of any table targeted by a SELECT query.

CData Python Connector for Zoho Books

CacheProvider

The namespace of an ADO.NET provider. The specified provider is used as the target database for all caching operations.

Data Type

string

Default Value

""

Remarks

You can cache to ADO.NET providers saved in your ADO.NET global assembly cache (GAC).

CData ADO.NET providers automatically register themselves with the GAC during installation, so you don't need to do so manually.

Third-party ADO.NET providers may or may not automatically register themselves with the GAC during installation. If you want to cache to a third-party ADO.NET provider, consult the documentation for that provider to determine what steps (if any) you must take to register them with the GAC. Once they have been registered, you can supply their namespace in this connection property.

You must also set the CacheConnection connection property to provide a connection string for the specified ADO.NET provider.

The following sections show connection examples and address other requirements for several popular database providers. Refer to CacheConnection for more information on typical connection properties.

SQLite

You can use the Microsoft ADO.NET Provider for SQLite to cache to SQLite databases.

CacheProvider=Microsoft.Data.Sqlite;CacheConnection='DataSource=C:\\Users\\Public\\cache.db;'InitiateOAuth=GETANDREFRESH;OrganizationId=YourOrganizationId;

MySQL

To cache to MySQL, you can use the CData ADO.NET Provider for MySQL:
Cache Provider=System.Data.CData.MySQL;Cache Connection='Server=localhost;Port=3306;Database=cache;User=root;Password=123456';User=myUser;Password=myPassword;Security Token=myToken;

SQL Server

You can use the Microsoft .NET Framework Provider for SQL Server, included in the .NET Framework, to cache to SQL Server:

Cache Provider=System.Data.SqlClient;Cache Connection="Server=MyMACHINE\MyInstance;Database=SQLCACHE;User Id=root;Password=admin";InitiateOAuth=GETANDREFRESH;OrganizationId=YourOrganizationId;

Oracle

To cache to Oracle, you can use the Oracle Data Provider for .NET, as shown in the following example:

Cache Provider=Oracle.DataAccess.Client;Cache Connection='User Id=scott;Password=tiger;Data Source=ORCL';InitiateOAuth=GETANDREFRESH;OrganizationId=YourOrganizationId;

The Oracle Data Provider for .NET also requires the Oracle Database Client. When you download the Oracle Database Client, ensure that its bitness matches the bitness of your machine. When you install, select either the Runtime or Administrator installation type. The Instant Client is not sufficient.

PostgreSQL

To cache to PostgreSQL, you can use the CData ADO.NET Provider for PostgreSQL:
Cache Provider=System.Data.CData.PostgreSQL;Cache Connection='Server=localhost;Port=5432;Database=cache;User=postgres;Password=123456';User=myUser;Password=myPassword;Security Token=myToken;

CData Python Connector for Zoho Books

CacheDriver

The driver class of a JDBC driver. The specified driver is used to connect to the target database for all caching operations.

Data Type

string

Default Value

""

Remarks

You can cache to any database for which you have a JDBC driver, including CData JDBC drivers.

Note: You must add the JAR file of the specified JDBC driver to the classpath. For CData JDBC drivers, you can find this JAR file in the "lib" subfolder of that driver's installation directory.

You must also set the CacheConnection connection property to provide a connection string for the specified JDBC driver.

For Linux systems and macOS, you need to create a config.ini file on the installation path of the driver (site-packages/cdata). The config.ini file has the following format (the driver and the path of the JDBC driver):

[salesforce.cpython-38-x86_64-linux-gnu.so]
CLASSPATH = /home/usrname/Downloads/lib/cdata.jdbc.postgresql.jar

Examples

The following examples show how to cache to several major databases. For more information on the JDBC URL syntax and typical connection properties, see CacheConnection.

Derby and Java DB

Java DB is the Oracle distribution of Derby. You must add the Derby JDBC driver's JAR file, derbytools.jar, to your classpath to cache to Java DB.

The Derby JDBC driver's JAR file is bundled in db-derby-10.17.1.0-bin.zip, which you can download from this page. You can find derbytools.jar in the "lib" subfolder of this zip file.

After adding derbytools.jar to the classpath, you can cache to a Java DB database as follows:

jdbc:zohobooks:CacheDriver=org.apache.derby.jdbc.EmbeddedDriver;CacheConnection='jdbc:derby:sample';InitiateOAuth=GETANDREFRESH;OrganizationId=YourOrganizationId;
To cache to an in-memory database, use a JDBC URL like the following:
jdbc:zohobooks:CacheDriver=org.apache.derby.jdbc.EmbeddedDriver;CacheConnection='jdbc:derby:memory';InitiateOAuth=GETANDREFRESH;OrganizationId=YourOrganizationId;

SQLite

The following is a JDBC URL for the SQLite JDBC driver:

jdbc:zohobooks:CacheDriver=org.sqlite.JDBC;CacheConnection='jdbc:sqlite:C:/Temp/sqlite.db';InitiateOAuth=GETANDREFRESH;OrganizationId=YourOrganizationId;

MySQL

The following is a JDBC URL for the CData JDBC Driver for MySQL:

  jdbc:zohobooks:Cache Driver=cdata.jdbc.mysql.MySQLDriver;Cache Connection='jdbc:mysql:Server=localhost;Port=3306;Database=cache;User=root;Password=123456';InitiateOAuth=GETANDREFRESH;OrganizationId=YourOrganizationId;
  

SQL Server

The following JDBC URL uses the Microsoft JDBC Driver for SQL Server:

jdbc:zohobooks:Cache Driver=com.microsoft.sqlserver.jdbc.SQLServerDriver;Cache Connection='jdbc:sqlserver://localhost\sqlexpress:7437;user=sa;password=123456;databaseName=Cache';InitiateOAuth=GETANDREFRESH;OrganizationId=YourOrganizationId;

Oracle

The following is a JDBC URL for the Oracle Thin Client:

jdbc:zohobooks:Cache Driver=oracle.jdbc.OracleDriver;CacheConnection='jdbc:oracle:thin:scott/tiger@localhost:1521:orcldb';InitiateOAuth=GETANDREFRESH;OrganizationId=YourOrganizationId;
NOTE: If using a version of Oracle older than 9i, the cache driver will instead be oracle.jdbc.driver.OracleDriver .

PostgreSQL

The following JDBC URL uses the official PostgreSQL JDBC driver:

jdbc:zohobooks:CacheDriver=cdata.jdbc.postgresql.PostgreSQLDriver;CacheConnection='jdbc:postgresql:User=postgres;Password=admin;Database=postgres;Server=localhost;Port=5432;';InitiateOAuth=GETANDREFRESH;OrganizationId=YourOrganizationId;

CData Python Connector for Zoho Books

CacheConnection

Specifies the connection string for the specified cache database.

Data Type

string

Default Value

""

Remarks

The target cache database is determined by a combination of this connection property and the CacheProvider connection property. Both properties are required to use the specified cache database.

The connection string specified in this connection property is passed directly to the specified in the CacheProvider connection property. Consult the documentation for the specified for more information on its available connection properties.

Examples of common cache database settings can be found below.

SQLite

MySQL

The following are typical connection properties:

  • Server: The IP address or domain name of the server hosting the MySQL database that you want to cache to.
  • Port: The port on the specified server where your MySQL instance is running.
  • Database: The name of the MySQL database that you want to cache to. Must match the name of a MySQL database hosted on the specified server.
  • User: The username of a user registered with the selected MySQL database.
  • Password: The password associated with the specified MySQL user.

SQL Server

The following are typical SQL Server connection properties:

  • Server: The name or network address of the computer running SQL Server. To connect to a named instance instead of the default instance, specify the host name and the instance name, separated by a backslash.
  • Port: The port on the specified server where your SQL Server instance is running.
  • Database: The name of the SQL Server database you want to cache to. Must match the name of a SQL Server database hosted on the specified server.
  • Integrated Security: To use the current Windows account for authentication, set this option to True. To authenticate with User and Password instead, set this option to False.
  • User Id: The username of a user registered with the selected SQL Server database. This property is only needed if you are not using integrated security.
  • Password: The password associated with the specified SQL Server user. This property is only needed if you are not using integrated security.

Oracle

The following are typical connection properties:

  • Data Source: The connect descriptor that identifies the Oracle database. This can be a TNS connect descriptor, an Oracle Net Services name that resolves to a connect descriptor, or, after version 11g, an Easy Connect naming (the host name of the Oracle server with an optional port and service name).

  • User Id: The username of a user registered with the selected Oracle database.
  • Password: The password associated with the specified Oracle user.

PostgreSQL

The following are typical connection properties:

  • Host: The address of the server hosting the PostgreSQL database.
  • Port: The port on the specified host server where your PostgreSQL database is hosted.
  • Database: The name of the PostgreSQL database you want to cache to. Must match the name of a PostgreSQL database hosted on the specified server.
  • User name: The username of a user registered with the selected PostgreSQL database.
  • Password: The password associated with the specified user.

CData Python Connector for Zoho Books

CacheLocation

Specifies the path to the cache when caching to a file.

Data Type

string

Default Value

"%APPDATA%\\CData\\ZohoBooks Data Provider"

Remarks

The CacheLocation is a simple, file-based cache.

If left unspecified, the default location is %APPDATA%\\CData\\ZohoBooks Data Provider, where %APPDATA% is set to the user's configuration directory:

Platform %APPDATA%
Windows The value of the APPDATA environment variable
Linux ~/.config

See Also

  • AutoCache: Set to implicitly create and maintain a cache for later offline use.
  • CacheMetadata: Set to persist the Zoho Books catalog in CacheLocation.

CData Python Connector for Zoho Books

CacheTolerance

Notes the tolerance, in seconds, for stale data in the specified cache database. Requires AutoCache to be set to True.

Data Type

int

Default Value

600

Remarks

When you execute a query for tables in the cache, the connector checks the time elapsed since the last update to the cache.

If the last update to the cache is older than the value of this connection property (measured in seconds), the connector refreshes the cache.

Otherwise, the connector returns data directly from the cache.

CData Python Connector for Zoho Books

Offline

Gets the data from the specified cache database instead of live Zoho Books data.

Data Type

bool

Default Value

false

Remarks

When this connection property is set to True, all queries execute against the cache database instead of the live Zoho Books data.

In this mode, some SQL operations like INSERT, UPDATE, DELETE, and CACHE are disabled.

CData Python Connector for Zoho Books

CacheMetadata

Determines whether the provider caches table metadata to a file-based cache database.

Data Type

bool

Default Value

false

Remarks

When this connection property is set to True, as you execute queries, table metadata in the Zoho Books catalog is cached to the cache database specified by CacheConnection and CacheProvider, or, if those connection properties are not set, to the user's home directory.

The location of your home directory varies by platform:

PlatformHome Directory
Windows %APPDATA%\\CData\\ZohoBooks Data Provider
Mac ~/Library/Application Support/CData/ZohoBooks Data Provider
Unix ~/.config/CData/ZohoBooks Data Provider

A table's metadata is retrieved only once, when the table is queried for the first time.

When to Use CacheMetadata

When there are a large number of Zoho Books tables and columns for the connector to retrieve during metadata discovery, the connector may take a while to list all table metadata.

You may experience slow metadata retrieval when:

  • Your Zoho Books instance naturally has a large table count.
  • The connector has been configured, via its connection properties, to discover more tables than it would under its default configuration.
  • You make many short-lived connections to the connector.
With CacheMetadata enabled, all retrieved metadata is mirrored in the cache database. This means that any subsequent attempts by the connector to discover metadata are much faster, as this metadata is then read directly from the cache database, without needing to spend time requesting metadata from Zoho Books.

When Not to Use CacheMetadata

The connector automatically persists metadata in memory for up to an hour when you first discover the metadata for a table or view, so CacheMetadata is generally not necessary.

CacheMetadata is not ideal in scenarios where you are working with volatile metadata. The first time you query a table, the connector caches its metadata to the cache database file. This cache is not dynamically updated to reflect updates to the table schema, so you must delete and rebuild the cache database file to pick up new, changed, or deleted columns.

CData Python Connector for Zoho Books

Miscellaneous

This section provides a complete list of the Miscellaneous properties you can configure in the connection string for this provider.


PropertyDescription
MaxRowsSpecifies the maximum number of rows returned for queries that do not include either aggregation or GROUP BY.
OtherSpecifies advanced connection properties for specialized scenarios. Use this property only under the guidance of our Support team to address specific issues.
PagesizeThe maximum number of results to return per page from Zoho Books.
PseudoColumnsSpecifies the pseudocolumns to expose as table columns, expressed as a string in the format 'TableName=ColumnName;TableName=ColumnName'.
ReadonlyToggles read-only access to Zoho Books from the provider.
RetryWaitTimeThe minimum number of milliseconds the provider will wait to retry a request.
RTKSpecifies the runtime key for licensing the provider. If unset or invalid, the provider defaults to the standard licensing method. This property is only required in environments where the standard licensing method is unsupported or requires a runtime key.
TimeoutSpecifies the maximum time, in seconds, that the provider waits for a server response before throwing a timeout error.
UserDefinedViewsSpecifies a filepath to a JSON configuration file that defines custom views. The provider automatically detects and uses the views specified in this file.
CData Python Connector for Zoho Books

MaxRows

Specifies the maximum number of rows returned for queries that do not include either aggregation or GROUP BY.

Data Type

int

Default Value

-1

Remarks

The default value for this property, -1, means that no row limit is enforced unless the query explicitly includes a LIMIT clause. (When a query includes a LIMIT clause, the value specified in the query takes precedence over the MaxRows setting.)

Setting MaxRows to a whole number greater than 0 ensures that queries do not return excessively large result sets by default.

This property is useful for optimizing performance and preventing excessive resource consumption when executing queries that could otherwise return very large datasets.

CData Python Connector for Zoho Books

Other

Specifies advanced connection properties for specialized scenarios. Use this property only under the guidance of our Support team to address specific issues.

Data Type

string

Default Value

""

Remarks

This property allows advanced users to configure hidden properties for specialized situations, with the advice of our Support team. These settings are not required for normal use cases but can address unique requirements or provide additional functionality. To define multiple properties, use a semicolon-separated list.

Note: It is strongly recommended to set these properties only when advised by the Support team to address specific scenarios or issues.

Caching Configuration

PropertyDescription
CachePartial=TrueCaches only a subset of columns, which you can specify in your query.
QueryPassthrough=TruePasses the specified query to the cache database instead of using the SQL parser of the connector.

Integration and Formatting

PropertyDescription
DefaultColumnSizeSets the default length of string fields when the data source does not provide column length in the metadata. The default value is 2000.
ConvertDateTimeToGMT=TrueConverts date-time values to GMT, instead of the local time of the machine. The default value is False (use local time).
RecordToFile=filenameRecords the underlying socket data transfer to the specified file.

CData Python Connector for Zoho Books

Pagesize

The maximum number of results to return per page from Zoho Books.

Data Type

int

Default Value

200

Remarks

The Pagesize property affects the maximum number of results to return per page from Zoho Books. While the data source optimizes the default page size for most use cases, you may need to adjust this value depending on the specific object or service endpoint you are querying. Increasing the page size may improve performance, but it could also result in higher memory consumption per page.

Note: The default pagesize of reports is 500.

CData Python Connector for Zoho Books

PseudoColumns

Specifies the pseudocolumns to expose as table columns, expressed as a string in the format 'TableName=ColumnName;TableName=ColumnName'.

Data Type

string

Default Value

""

Remarks

This property allows you to define which pseudocolumns the connector exposes as table columns.

To specify individual pseudocolumns, use the following format:

Table1=Column1;Table1=Column2;Table2=Column3

To include all pseudocolumns for all tables use:

*=*

CData Python Connector for Zoho Books

Readonly

Toggles read-only access to Zoho Books from the provider.

Data Type

bool

Default Value

false

Remarks

When set to True, the connector allows only SELECT queries. Attempting an INSERT, UPDATE, DELETE, or stored procedure query fails with an error message.

CData Python Connector for Zoho Books

RetryWaitTime

The minimum number of milliseconds the provider will wait to retry a request.

Data Type

string

Default Value

"2000"

Remarks

The value of this property is doubled on every retry to determine how long to wait until the next retry. Specify the maximum number of retries with MaximumRequestRetries.

CData Python Connector for Zoho Books

RTK

Specifies the runtime key for licensing the provider. If unset or invalid, the provider defaults to the standard licensing method. This property is only required in environments where the standard licensing method is unsupported or requires a runtime key.

Data Type

string

Default Value

""

Remarks

This property is typically unnecessary, as most configurations support a standard licensing mechanism.

Warning: The value of this property takes precedence over all existing licensing information. To avoid licensing errors, ensure the provided runtime key is correct.

CData Python Connector for Zoho Books

Timeout

Specifies the maximum time, in seconds, that the provider waits for a server response before throwing a timeout error.

Data Type

int

Default Value

60

Remarks

The timeout applies to each individual communication with the server rather than the entire query or operation. For example, a query could continue running beyond 60 seconds if each paging call completes within the timeout limit.

Timeout is set to 60 seconds by default. To disable timeouts, set this property to 0.

Disabling the timeout allows operations to run indefinitely until they succeed or fail due to other conditions such as server-side timeouts, network interruptions, or resource limits on the server.

Note: Use this property cautiously to avoid long-running operations that could degrade performance or result in unresponsive behavior.

CData Python Connector for Zoho Books

UserDefinedViews

Specifies a filepath to a JSON configuration file that defines custom views. The provider automatically detects and uses the views specified in this file.

Data Type

string

Default Value

""

Remarks

UserDefinedViews allows you to define and manage custom views through a JSON-formatted configuration file called UserDefinedViews.json. These views are automatically recognized by the connector and enable you to execute custom SQL queries as if they were standard database views. The JSON file defines each view as a root element with a child element called "query", which contains the SQL query for the view.

For example:

{
	"MyView": {
		"query": "SELECT * FROM INVOICES WHERE MyColumn = 'value'"
	},
	"MyView2": {
		"query": "SELECT * FROM MyTable WHERE Id IN (1,2,3)"
	}
}

You can use this property to define multiple views in a single file and specify the filepath. For example:

UserDefinedViews=C:\Path\To\UserDefinedViews.json
When you specify a view in UserDefinedViews, the connector only sees that view.

For further information, see User Defined Views.

CData Python Connector for Zoho Books

Third Party Copyrights

LZMA from 7Zip LZMA SDK

LZMA SDK is placed in the public domain.

Anyone is free to copy, modify, publish, use, compile, sell, or distribute the original LZMA SDK code, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.

LZMA2 from XZ SDK

Version 1.9 and older are in the public domain.

Xamarin.Forms

Xamarin SDK

The MIT License (MIT)

Copyright (c) .NET Foundation Contributors

All rights reserved.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

NSIS 3.10

Copyright (C) 1999-2025 Contributors THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS COMMON PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.

1. DEFINITIONS

"Contribution" means:

a) in the case of the initial Contributor, the initial code and documentation distributed under this Agreement, and b) in the case of each subsequent Contributor:

i) changes to the Program, and

ii) additions to the Program;

where such changes and/or additions to the Program originate from and are distributed by that particular Contributor. A Contribution 'originates' from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include additions to the Program which: (i) are separate modules of software distributed in conjunction with the Program under their own license agreement, and (ii) are not derivative works of the Program.

"Contributor" means any person or entity that distributes the Program.

"Licensed Patents " mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program.

"Program" means the Contributions distributed in accordance with this Agreement.

"Recipient" means anyone who receives the Program under this Agreement, including all Contributors.

2. GRANT OF RIGHTS

a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, distribute and sublicense the Contribution of such Contributor, if any, and such derivative works, in source code and object code form.

b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in source code and object code form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder.

c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program.

d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement.

3. REQUIREMENTS

A Contributor may choose to distribute the Program in object code form under its own license agreement, provided that:

a) it complies with the terms and conditions of this Agreement; and

b) its license agreement:

i) effectively disclaims on behalf of all Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose;

ii) effectively excludes on behalf of all Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits;

iii) states that any provisions which differ from this Agreement are offered by that Contributor alone and not by any other party; and

iv) states that source code for the Program is available from such Contributor, and informs licensees how to obtain it in a reasonable manner on or through a medium customarily used for software exchange.

When the Program is made available in source code form:

a) it must be made available under this Agreement; and

b) a copy of this Agreement must be included with each copy of the Program.

Contributors may not remove or alter any copyright notices contained within the Program.

Each Contributor must identify itself as the originator of its Contribution, if any, in a manner that reasonably allows subsequent Recipients to identify the originator of the Contribution.

4. COMMERCIAL DISTRIBUTION

Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense.

For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages.

5. NO WARRANTY

EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement, including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations.

6. DISCLAIMER OF LIABILITY

EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.

7. GENERAL

If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.

If Recipient institutes patent litigation against a Contributor with respect to a patent applicable to software (including a cross-claim or counterclaim in a lawsuit), then any patent licenses granted by that Contributor to such Recipient under this Agreement shall terminate as of the date such litigation is filed. In addition, if Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed.

All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive.

Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. IBM is the initial Agreement Steward. IBM may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to distribute the Program (including its Contributions) under the new version. Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved.

This Agreement is governed by the laws of the State of New York and the intellectual property laws of the United States of America. No party to this Agreement will bring a legal action under this Agreement more than one year after the cause of action arose. Each party waives its rights to a jury trial in any resulting litigation.

AdoptOpenJDK / Adoptium Temurin JRE 17.0.18_8

Copyright (c) Eclipse Foundation AISBL. All Rights Reserved.

Apache License, Version 2.0

TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION

1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.

"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.

"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.

"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.

"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.

"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.

"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).

"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.

"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."

"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.

2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.

3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.

4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:

  1. You must give any other recipients of the Work or Derivative Works a copy of this License; and
  2. You must cause any modified files to carry prominent notices stating that You changed the files; and
  3. You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
  4. If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.
You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.

5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.

6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.

7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.

8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.

9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.

END OF TERMS AND CONDITIONS

Eclipse Distribution License - v 1.0

All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  • Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
  • Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
  • Neither the name of the Eclipse Foundation, Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Eclipse Public License - v 2.0

THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.

1. DEFINITIONS "Contribution" means:

  • a) in the case of the initial Contributor, the initial content Distributed under this Agreement, and
  • b) in the case of each subsequent Contributor:
    • i) changes to the Program, and
    • ii) additions to the Program;
    where such changes and/or additions to the Program originate from and are Distributed by that particular Contributor. A Contribution "originates" from a Contributor if it was added to the Program by such Contributor itself or anyone acting on such Contributor's behalf. Contributions do not include changes or additions to the Program that are not Modified Works.
"Contributor" means any person or entity that Distributes the Program. "Licensed Patents" mean patent claims licensable by a Contributor which are necessarily infringed by the use or sale of its Contribution alone or when combined with the Program.

"Program" means the Contributions Distributed in accordance with this Agreement.

"Recipient" means anyone who receives the Program under this Agreement or any Secondary License (as applicable), including Contributors.

"Derivative Works" shall mean any work, whether in Source Code or other form, that is based on (or derived from) the Program and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship.

"Modified Works" shall mean any work in Source Code or other form that results from an addition to, deletion from, or modification of the contents of the Program, including, for purposes of clarity any new file in Source Code form that contains any contents of the Program. Modified Works shall not include works that contain only declarations, interfaces, types, classes, structures, or files of the Program solely in each case in order to link to, bind by name, or subclass the Program or Modified Works thereof.

"Distribute" means the acts of a) distributing or b) making available in any manner that enables the transfer of a copy.

"Source Code" means the form of a Program preferred for making modifications, including but not limited to software source code, documentation source, and configuration files.

"Secondary License" means either the GNU General Public License, Version 2.0, or any later versions of that license, including any exceptions or additional permissions as identified by the initial Contributor.

2. GRANT OF RIGHTS

  • a) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, Distribute and sublicense the Contribution of such Contributor, if any, and such Derivative Works.
  • b) Subject to the terms of this Agreement, each Contributor hereby grants Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed Patents to make, use, sell, offer to sell, import and otherwise transfer the Contribution of such Contributor, if any, in Source Code or other form. This patent license shall apply to the combination of the Contribution and the Program if, at the time the Contribution is added by the Contributor, such addition of the Contribution causes such combination to be covered by the Licensed Patents. The patent license shall not apply to any other combinations which include the Contribution. No hardware per se is licensed hereunder.
  • c) Recipient understands that although each Contributor grants the licenses to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and licenses granted hereunder, each Recipient hereby assumes sole responsibility to secure any other intellectual property rights needed, if any. For example, if a third party patent license is required to allow Recipient to Distribute the Program, it is Recipient's responsibility to acquire that license before distributing the Program.
  • d) Each Contributor represents that to its knowledge it has sufficient copyright rights in its Contribution, if any, to grant the copyright license set forth in this Agreement.
  • e) Notwithstanding the terms of any Secondary License, no Contributor makes additional grants to any Recipient (other than those set forth in this Agreement) as a result of such Recipient's receipt of the Program under the terms of a Secondary License (if permitted under the terms of Section 3).

3. REQUIREMENTS 3.1 If a Contributor Distributes the Program in any form, then:

  • a) the Program must also be made available as Source Code, in accordance with section 3.2, and the Contributor must accompany the Program with a statement that the Source Code for the Program is available under this Agreement, and informs Recipients how to obtain it in a reasonable manner on or through a medium customarily used for software exchange; and
  • b) the Contributor may Distribute the Program under a license different than this Agreement, provided that such license:
    • i) effectively disclaims on behalf of all other Contributors all warranties and conditions, express and implied, including warranties or conditions of title and non-infringement, and implied warranties or conditions of merchantability and fitness for a particular purpose;
    • ii) effectively excludes on behalf of all other Contributors all liability for damages, including direct, indirect, special, incidental and consequential damages, such as lost profits;
    • iii) does not attempt to limit or alter the recipients' rights in the Source Code under section 3.2; and
    • iv) requires any subsequent distribution of the Program by any party to be under a license that satisfies the requirements of this section 3.
3.2 When the Program is Distributed as Source Code:
  • a) it must be made available under this Agreement, or if the Program (i) is combined with other material in a separate file or files made available under a Secondary License, and (ii) the initial Contributor attached to the Source Code the notice described in Exhibit A of this Agreement, then the Program may be made available under the terms of such Secondary Licenses, and
  • b) a copy of this Agreement must be included with each copy of the Program.
3.3 Contributors may not remove or alter any copyright, patent, trademark, attribution notices, disclaimers of warranty, or limitations of liability (‘notices') contained within the Program from any copy of the Program which they Distribute, provided that Contributors may add their own appropriate notices.

4. COMMERCIAL DISTRIBUTION Commercial distributors of software may accept certain responsibilities with respect to end users, business partners and the like. While this license is intended to facilitate the commercial use of the Program, the Contributor who includes the Program in a commercial product offering should do so in a manner which does not create potential liability for other Contributors. Therefore, if a Contributor includes the Program in a commercial product offering, such Contributor ("Commercial Contributor") hereby agrees to defend and indemnify every other Contributor ("Indemnified Contributor") against any losses, damages and costs (collectively "Losses") arising from claims, lawsuits and other legal actions brought by a third party against the Indemnified Contributor to the extent caused by the acts or omissions of such Commercial Contributor in connection with its distribution of the Program in a commercial product offering. The obligations in this section do not apply to any claims or Losses relating to any actual or alleged intellectual property infringement. In order to qualify, an Indemnified Contributor must: a) promptly notify the Commercial Contributor in writing of such claim, and b) allow the Commercial Contributor to control, and cooperate with the Commercial Contributor in, the defense and any related settlement negotiations. The Indemnified Contributor may participate in any such claim at its own expense.

For example, a Contributor might include the Program in a commercial product offering, Product X. That Contributor is then a Commercial Contributor. If that Commercial Contributor then makes performance claims, or offers warranties related to Product X, those performance claims and warranties are such Commercial Contributor's responsibility alone. Under this section, the Commercial Contributor would have to defend claims against the other Contributors related to those performance claims and warranties, and if a court requires any other Contributor to pay any damages as a result, the Commercial Contributor must pay those damages.

5. NO WARRANTY EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT PERMITTED BY APPLICABLE LAW, THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely responsible for determining the appropriateness of using and distributing the Program and assumes all risks associated with its exercise of rights under this Agreement, including but not limited to the risks and costs of program errors, compliance with applicable laws, damage to or loss of data, programs or equipment, and unavailability or interruption of operations.

6. DISCLAIMER OF LIABILITY EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT PERMITTED BY APPLICABLE LAW, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.

7. GENERAL If any provision of this Agreement is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this Agreement, and without further action by the parties hereto, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.

If Recipient institutes patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Program itself (excluding combinations of the Program with other software or hardware) infringes such Recipient's patent(s), then such Recipient's rights granted under Section 2(b) shall terminate as of the date such litigation is filed.

All Recipient's rights under this Agreement shall terminate if it fails to comply with any of the material terms or conditions of this Agreement and does not cure such failure in a reasonable period of time after becoming aware of such noncompliance. If all Recipient's rights under this Agreement terminate, Recipient agrees to cease use and distribution of the Program as soon as reasonably practicable. However, Recipient's obligations under this Agreement and any licenses granted by Recipient relating to the Program shall continue and survive.

Everyone is permitted to copy and distribute copies of this Agreement, but in order to avoid inconsistency the Agreement is copyrighted and may only be modified in the following manner. The Agreement Steward reserves the right to publish new versions (including revisions) of this Agreement from time to time. No one other than the Agreement Steward has the right to modify this Agreement. The Eclipse Foundation is the initial Agreement Steward. The Eclipse Foundation may assign the responsibility to serve as the Agreement Steward to a suitable separate entity. Each new version of the Agreement will be given a distinguishing version number. The Program (including Contributions) may always be Distributed subject to the version of the Agreement under which it was received. In addition, after a new version of the Agreement is published, Contributor may elect to Distribute the Program (including its Contributions) under the new version.

Except as expressly stated in Sections 2(a) and 2(b) above, Recipient receives no rights or licenses to the intellectual property of any Contributor under this Agreement, whether expressly, by implication, estoppel or otherwise. All rights in the Program not expressly granted under this Agreement are reserved. Nothing in this Agreement is intended to be enforceable by any entity that is not a Contributor or Recipient. No third-party beneficiary rights are created under this Agreement.

Exhibit A – Form of Secondary Licenses Notice "This Source Code may also be made available under the following Secondary Licenses when the conditions for such availability set forth in the Eclipse Public License, v. 2.0 are satisfied: {name license(s), version(s), and exceptions or additional permissions here}."

Simply including a copy of this Agreement, including this Exhibit A is not sufficient to license the Source Code under Secondary Licenses.

If it is not possible or desirable to put the notice in a particular file, then You may include the notice in a location (such as a LICENSE file in a relevant directory) where a recipient would be likely to look for such a notice.

You may add additional accurate notices of copyright ownership.

GNU Classpath

Classpath is distributed under the terms of the GNU General Public License with the following clarification and special exception.

Linking this library statically or dynamically with other modules is making a combined work based on this library. Thus, the terms and conditions of the GNU General Public License cover the whole combination.

As a special exception, the copyright holders of this library give you permission to link this library with independent modules to produce an executable, regardless of the license terms of these independent modules, and to copy and distribute the resulting executable under terms of your choice, provided that you also meet, for each linked independent module, the terms and conditions of the license of that module. An independent module is a module which is not derived from or based on this library. If you modify this library, you may extend this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version.

As such, it can be used to run, create and distribute a large class of applications and applets. When GNU Classpath is used unmodified as the core class library for a virtual machine, compiler for the java languge, or for a program written in the java programming language it does not affect the licensing for distributing those programs directly.

OpenJDK Assembly Exception

The OpenJDK source code made available by Oracle America, Inc. (Oracle) at openjdk.java.net ("OpenJDK Code") is distributed under the terms of the GNU General Public License <http://www.gnu.org/copyleft/gpl.html> version 2 only ("GPL2"), with the following clarification and special exception.

Linking this OpenJDK Code statically or dynamically with other code is making a combined work based on this library. Thus, the terms and conditions of GPL2 cover the whole combination.

As a special exception, Oracle gives you permission to link this OpenJDK Code with certain code licensed by Oracle as indicated at http://openjdk.java.net/legal/exception-modules-2007-05-08.html ("Designated Exception Modules") to produce an executable, regardless of the license terms of the Designated Exception Modules, and to copy and distribute the resulting executable under GPL2, provided that the Designated Exception Modules continue to be governed by the licenses under which they were offered by Oracle.

As such, it allows licensees and sublicensees of Oracle's GPL2 OpenJDK Code to build an executable that includes those portions of necessary code that Oracle could not provide under GPL2 (or that Oracle has provided under GPL2 with the Classpath exception). If you modify or add to the OpenJDK code, that new GPL2 code may still be combined with Designated Exception Modules if the new code is made subject to this exception by its copyright holder.

Copyright (c) 2026 CData Software, Inc. - All rights reserved.
Build 26.0.9655