## Zoho Inventory Documentation Index Access the complete documentation index at: https://www.zoho.com/bh/inventory/llms.txt Use this file to discover all available documentation pages before proceeding. [Back](./) # Can I get the sample deluge script to update records in Zoho Inventory? Check the given Deluge sample script to update a record in Zoho Inventory. ``` parameters\_data='{"field1":"value1","field2":"value2"}'; response = invokeUrl \[ url: "https://www.zoho.com/inventory/api/v1/invoices/#overview\_id=10234695" type: PUT content-type: application/json parameters: parameters\_data connection: \] info response; ``` For updating records of other modules, you can replace the module name “**invoices**” with the required module name in the url given: _“[](/inventory/api/v1/invoices/#overview)[https://www.zoho.com/inventory/api/v1/invoices/#overview](https://www.zoho.com/inventory/api/v1/invoices/#overview)\_id=10234695”_ _type: PUT_ To get the deluge sample script for other modules: * Access the [**Zoho Inventory API**](/inventory/api/v1/invoices/#overview). * Navigate to the required module. * Navigate to any **Update API Request** and go to the **Request Example** section. * Click on the dropdown. * Select **Deluge** for the sample script. * * *