Import Bills To QuickBooks Online
This task will insert new and update existing bills in Quickbooks Online, from a Quickbooks Online Bill XML file. The logic surrounding inserting/updating bills works as follows:
- If an Id is provided for the bill, and a bill already exists in Quickbooks with this Id, the existing bill will be updated.
- If an ExternalId is provided for the bill, and a match is found in Zynk's truth table, the existing bill will be updated.
- If a DocNumber is provided for the bill, and a bill already exists in Quickbooks with this DocNumber, the existing bill will be updated.
- If none of the above conditions are fulfilled, a new bill will be created.
Upload Bills
Connection
Required
Select a connection to the Quickbooks Online company you want to use. See Connecting to QuickBooks Online
Fail File
Required
The XML file to output any records to which fail to import to Quickbooks.
Input File
Required
The XML file containing the records to import to Quickbooks. See below for a sample input file.
Success File
Required
The XML file to output any records to which are successfully imported to Quickbooks.
Batch Size
Required
The maximum number of records to include in each batch sent to QuickBooks Online. The value must be between 1 and 25. Defaults to 25.
Prevent Reprocessing
Required
Set to true to prevent the same records being imported to Quickbooks more than once. Only works on records where an ExternalId is provided in the input file.
Match Customers/Vendors On
Required
Select the field in Quickbooks to match the name attribute on the CustomerRef/VendorRef element to. The following options are available:
- DisplayName
- CompanyName
- GivenName
- MiddleName
- FamilyName
Examples
Sample input file:
<?xml version="1.0" encoding="utf-8"?>
<ArrayOfBill
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<RecordOfBill>
<Data domain="QBO"
xmlns="http://schema.intuit.com/finance/v3">
<DocNumber>5362</DocNumber>
<TxnDate>2021-05-07T00:00:00</TxnDate>
<CurrencyRef>GBP</CurrencyRef>
<ExchangeRate>1</ExchangeRate>
<Line>
<LineNum>1</LineNum>
<Description>Catering -- food & beverage</Description>
<Amount>10</Amount>
<DetailType>ItemBasedExpenseLineDetail</DetailType>
<ItemBasedExpenseLineDetail>
<ItemRef name="Catering">3</ItemRef>
<UnitPrice>10</UnitPrice>
<Qty>1</Qty>
<TaxCodeRef>3</TaxCodeRef>
<BillableStatus>NotBillable</BillableStatus>
</ItemBasedExpenseLineDetail>
</Line>
<VendorRef name="Andrew Haberbosch"></VendorRef>
<APAccountRef name="Creditors"></APAccountRef>
<GlobalTaxCalculation>TaxExcluded</GlobalTaxCalculation>
<SalesTermRef>3</SalesTermRef>
</Data>
</RecordOfBill>
</ArrayOfBill>