Is there a way to delete a customer from Quickbooks offline using qbsdk and qbxml? -


i want delete particular customer quickbooks using listid of customer . qbxml request in case ?

you can use listdelrq delete list-type things (customers, items, vendors, etc.) quickbooks.

refer osr full syntax:

your request this:

?xml version="1.0" encoding="utf-8"?> <?qbxml version="9.0"?>   <qbxml>     <qbxmlmsgsrq onerror="stoponerror">       <listdelrq>         <!-- listdeltype may have 1 of following values: account, billingrate, class, currency, customer, customermsg, customertype, datedriventerms, employee, inventorysite, itemdiscount, itemfixedasset, itemgroup, iteminventory, iteminventoryassembly, itemnoninventory, itemothercharge, itempayment, itemsalestax, itemsalestaxgroup, itemservice, itemsubtotal, jobtype, othername, paymentmethod, payrollitemnonwage, payrollitemwage, pricelevel, salesrep, salestaxcode, shipmethod, standardterms, todo, unitofmeasureset, vehicle, vendor, vendortype, workerscompcode -->       <listdeltype>enumtype</listdeltype>       <listid>idtype</listid>     </listdelrq>   </qbxmlmsgsrq> </qbxml> 

Comments

Popular posts from this blog

java - WARN : org.springframework.web.servlet.PageNotFound - No mapping found for HTTP request with URI [/board/] in DispatcherServlet with name 'appServlet' -

html - Outlook 2010 Anchor (url/address/link) -

android - How to create dynamically Fragment pager adapter -