A community-maintained, robust, and type-safe Typescript SDK that allows you to interact with the Zoho Inventory API.
bun add zapi-inventoryThis module exports a class constructor which takes a configuration object.
Creates a new ZohoInventory instance.
-
config- Required - A plain JavaScript object that contains the configuration options.client- Required - An object containing the Client ID and Client Secret obtained from the Zoho Developer Console.id- A string specifying the Client ID.secret- A string specifying the Client Secret.
orgId- Required - A string that specifies the Zoho Inventory Organization ID. This determines which organization's data the SDK will access.refreshToken- Required - A string representing the permanent OAuth 2.0 refresh token. The SDK uses this to automatically generate and manage short-lived access tokens.dc- Optional - A string specifying the data centre for the API domain. Supported values:com,eu,in,com.au,jp,ca,com.cn,sa. Defaults tocom.timeout- Optional - The number of milliseconds before a request times out. If the request takes longer thantimeout, it will be aborted. Defaults to10000(10 seconds).store- Optional - A custom token store implementation. The SDK uses an in-memory store by default. Provide your ownTokenStoreimplementation (file, database, Redis, etc.) to persist tokens across process restarts.
Throws an Error or APIError exception if the required options are missing or an http error occurs.
Every resource or zoho inventory module is accessed via your inventory instance:
const inventory = new ZohoInventory({
client: { id: Bun.env.ZOHO_CLIENT_ID, secret: Bun.env.ZOHO_CLIENT_SECRET },
orgId: Bun.env.ZOHO_ORGANIZATION_ID,
refreshToken: Bun.env.ZOHO_REFRESH_TOKEN,
dc: 'eu',
})
// inventory.<module>.<method_name>When using zapi-inventory, you do not have to specify the root key (e.g., item, salesorder, or contact) as the module automatically wraps the provided data. Using the item creation example, this translates to:
inventory.items
.create({ name: 'Solar Panel', rate: 120, item_type: 'inventory' })
.then((item) => console.log(item))
.catch((err) => console.error(err))The SDK exposes an http client on the SDK instance for making raw HTTP requests (GET, POST, PUT, DELETE) directly to the Zoho Inventory API. This is useful for accessing beta endpoints or retrieving specific sub-resources by crafting custom requests when the SDK does not yet provide a wrapper.
inventory.http.post<T>(options: {
path: string[]; // Array of path segments
body?: unknown; // Request payload
query?: Record<string, string | number | boolean>; // Query parameters
headers?: Record<string, string>; // Custom headers
timeout?: number; // Request-specific timeout
})Early versions (1.0.0-dev, 1.1.0, 2.0.0–3.0.0) were part of initial experimentation from when this started as a toy SDK, and were mistakes in versioning — they have since been unpublished. The 0.8.5–0.12.2 line is the stable pre-rewrite history. 1.0.0-rc.x and onward is the current, actively maintained architecture (types generated from Zoho's official OpenAPI specs, a resource module per API domain, OAuth token handling with a pluggable token store).
Contributions Welcome! You can contribute in the following ways.
- Create an Issue - Propose a new feature. Report a bug.
- Pull Request - Fix a bug or typo. Refactor the code.
- Share - Share your thoughts on the Blog, X, and others.
- Make your application - Please try to use the sdk.
For more details, see docs/CONTRIBUTING.md.
Thanks to all contributors!
Ralph Mataga https://github.com/matagaralph
Distributed under the MIT License. See LICENSE for more information.