## Documentation Index Access the complete documentation index at: https://www.zoho.com/us/books/kb/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 Books? Check the given Deluge sample script to update a record in Zoho Books. ``` parameters\_data='{"field1":"value1","field2":"value2"}'; response = invokeUrl \[ url: "https://www.zohoapis.com/books/v3/invoices/982000000567114?organization\_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: _“[https://www.zohoapis.com/books/v3/invoices/982000000567114?organization](https://www.zohoapis.com/books/v3/invoices/982000000567114?organization)\_id=10234695”_ _type: PUT_ To get the deluge sample script for other modules: * Access the [**Zoho Books API**](https://www.zoho.com/books/api/v3/introduction/#organization-id). * Navigate to the required module. * Navigate to any **Update API Request** and go to the **Request Example** section. * Click on the drop-down. * Select **Deluge** for the sample script. * * *