Zoho Invoice Create Invoice with Status Open
Using PHP I have created the following XML script to create invoices in Zoho Invoice.
'XMLString=<Invoice><CustomerID>'.$customerid.'</CustomerID><InvoiceItems><InvoiceItem><ItemName>'.$itemname.'</ItemName><ItemDescription>'.$itemdescription.'</ItemDescription><Price>'.$price.'</Price><Quantity>'.$quantity.'</Quantity></InvoiceItem></InvoiceItems><PaymentGateways><PayPal>1</PayPal></PaymentGateways><PONumber></PONumber></Invoice>';
However, It only creates a Draft invoice. Is it possible to set the status to Open Invoice at the the time I create the invoice?