Reputation: 31
I try this code it's work.(now, I can add Name : TestCustomer3) And I want to add other data to Quickbook. Can you Help me about qbXML Language.
Example : I want to add "Company Name", "Full Name", "Bill To"
Example Code
string input = @"<?xml version=""1.0"" encoding=""utf-8""?>
<?qbxml version=""2.0""?>
<QBXML>
<QBXMLMsgsRq onError=""stopOnError"">
<CustomerAddRq requestID=""15"">
<CustomerAdd>
<Name>TestCustomer3</Name> <!-- required -->
</CustomerAdd>
</CustomerAddRq>
</QBXMLMsgsRq>
</QBXML>";
Upvotes: 3
Views: 2549
Reputation: 1931
The info can be found by reviewing the on screen reference for QBXML
https://developer-static.intuit.com/qbSDK-current/Common/newOSR/index.html
thanks
Upvotes: 2
Reputation: 27952
The appropriate place to find this information is in the QuickBooks OSR:
To use the un-Intuit-ive QuickBooks OSR (pun intended) you should:
Note that the XML request/response will be jumbled together a little, so make sure you look at the XML carefully to determine where the request ends, and the response starts.
We also have some other QuickBooks qbXML examples on our QuickBooks integration wiki.
Upvotes: 7