For Zoho services only


I'm currently part of a wider delivery team at Ascent Business Solutions, recognised as a leading Zoho Premium Solutions Partner in the United Kingdom.

Ascent Business Solutions support organisations with everything from targeted technical fixes through to full Zoho CRM implementations and long-term platform adoption. Working as a team rather than a one-person consultancy allows projects to move forward consistently, with access to the right skills at each stage.

The team I manage specialises in API integrations between Zoho and third-party finance and commerce platforms such as Xero, Shopify, WooCommerce, and eBay. Much of our work involves solving integration challenges that fall outside standard documentation, supporting new ideas, new sectors, and evolving business models.

Success is measured through practical outcomes and return on investment, ranging from scaling small operations into high-turnover businesses to delivering rapid gains through online payments, automation, and streamlined digital workflows.

If you are looking for structured Zoho expertise backed by an established consultancy, you can contact Ascent Business Solutions on 0121 392 8140 (UK), email info@ascentbusiness.co.uk, or visit https://www.ascentbusiness.co.uk.
Zoho Books: Attach a document to a bill using Deluge / REST API

Zoho Books: Attach a document to a bill using Deluge / REST API

What?
A very quick article updated for 2026 and tested as working to attach a file to a bill in Zoho Books over API.

Why?
There's been some changes (endpoints) as well as the official documentation not helping tremendously. I'm scribbling it here so I can refer to how you attach a document to a record in Zoho Books.

The bigger part of this component is in a solution which replaces the autoscan feature in Zoho Books for received documents (Supplier/Vendor Invoices received to trigger the conversion of the relevant Purchase Order into a Bill and then attach the received invoice to the Bill).

How?
The key part that I was missing was step 2 in the below. Otherwise I would always get the error
{"code":2,"message":"The request passed is not valid."}
Note this is on the EU domain and with the updated Zoho Books API endpoints:
copyraw
/*
{"code":2,"message":"The request passed is not valid."}

Scope(s) required: ZohoBooks.bill.CREATE, ZohoBooks.documents.READ
*/
v_OrgID = organization.get("organization_id");
v_BillID = bill.get("bill_id");
v_DocumentID = document.get("document_id");
// 
// 1. Download the document as a file
f_DocumentFile = invokeurl
[
	url :"https://www.zohoapis.eu/books/v3/documents/" + v_DocumentID + "?organization_id=" + v_OrgID
	type :GET
	connection:"zb_doc_get"
];
// 
// 2. Prep binary for request
m_File = {"paramName":"attachment","content":f_DocumentFile};
// 
// 3. Attach document to bill
r_Attach = invokeurl
[
	url :"https://www.zohoapis.eu/books/v3/bills/" + v_BillID + "/attachment?organization_id=" + v_OrgID
	type :POST
	files:m_File
	connection:"zb_bill_create"
];
info r_Attach;
  1.  /* 
  2.  {"code":2,"message":"The request passed is not valid."} 
  3.   
  4.  Scope(s) required: ZohoBooks.bill.CREATE, ZohoBooks.documents.READ 
  5.  */ 
  6.  v_OrgID = organization.get("organization_id")
  7.  v_BillID = bill.get("bill_id")
  8.  v_DocumentID = document.get("document_id")
  9.  // 
  10.  // 1. Download the document as a file 
  11.  f_DocumentFile = invokeurl 
  12.  [ 
  13.      url :"https://www.zohoapis.eu/books/v3/documents/" + v_DocumentID + "?organization_id=" + v_OrgID 
  14.      type :GET 
  15.      connection:"zb_doc_get" 
  16.  ]
  17.  // 
  18.  // 2. Prep binary for request 
  19.  m_File = {"paramName":"attachment","content":f_DocumentFile}
  20.  // 
  21.  // 3. Attach document to bill 
  22.  r_Attach = invokeurl 
  23.  [ 
  24.      url :"https://www.zohoapis.eu/books/v3/bills/" + v_BillID + "/attachment?organization_id=" + v_OrgID 
  25.      type :POST 
  26.      files:m_File 
  27.      connection:"zb_bill_create" 
  28.  ]
  29.  info r_Attach; 
Category: Zoho Books :: Article: 1725

Accreditation

Badge - Zoho Creator Certified Developer Associate
Badge - Zoho Deluge Certified Developer
Badge - Certified Zoho CRM Developer

Donate & Support

If you like my content, and would like to support this sharing site, feel free to donate using a method below:

Paypal:
Donate to Joel Lipman via PayPal

Bitcoin:
Donate to Joel Lipman with Bitcoin bc1qf6elrdxc968h0k673l2djc9wrpazhqtxw8qqp4

Ethereum:
Donate to Joel Lipman with Ethereum 0xb038962F3809b425D661EF5D22294Cf45E02FebF

Credit where Credit is Due:


Feel free to copy, redistribute and share this information. All that we ask is that you attribute credit and possibly even a link back to this website as it really helps in our search engine rankings.

Disclaimer: Please note that the information provided on this website is intended for informational purposes only and does not represent a warranty. The opinions expressed are those of the author only. We recommend testing any solutions in a development environment before implementing them in production. The articles are based on our good faith efforts and were current at the time of writing, reflecting our practical experience in a commercial setting.

Thank you for visiting and, as always, we hope this website was of some use to you!

Kind Regards,

Joel Lipman
www.joellipman.com