Import Contact Payments to Sage Business Cloud Accounting
The Import Contact Payments task will create new customer receipts, customer refunds, vendor payments and vendor refunds in Sage Business Cloud Accounting. The sales invoice data must be provided in the Sage Business Cloud Accounting Contact Payment XML format.
Settings
Sage Business Cloud Accounting Connection
Required
The connection to Sage Business Cloud Accounting to use. See Connecting To Sage Business Cloud Accounting if you require more information on how to create/manage connections.
Fail File
Required
The name of a file for "failed" imports to be sent to.
Input File
Required
The source file that you want to import in Sage Business Cloud Accounting XML format.
Success File
Required
The name of a file for "successful" imports to be sent to.
Prevent Reprocessing
Required
Set to true to prevent the same record being processed more than once. This will only work where an external_id
is provided for a record in the input XML file.
Zynk Settings
Example
A sample input file is shown below. See Sage Business Cloud Accounting Contact Payment XML for full documentation of the XML format.
<?xml version="1.0" encoding="utf-8"?>
<sage_one_company xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<contact_payments>
<contact_payment>
<external_id>123456</external_id>
<transaction_type>
<id>CUSTOMER_RECEIPT</id>
</transaction_type>
<payment_method>
<displayed_as>Credit/Debit Card</displayed_as>
</payment_method>
<contact>
<reference>ZYNK0001</reference>
</contact>
<bank_account>
<displayed_as>Bank Account (1200)</displayed_as>
</bank_account>
<date>2021-10-06</date>
<reference>TXN123456</reference>
<total_amount>6</total_amount>
<currency>
<id>GBP</id>
</currency>
<allocated_artefacts>
<allocated_artefact>
<artefact>
<sales_invoice>
<invoice_number>SI-2</invoice_number>
</sales_invoice>
</artefact>
<amount>6</amount>
<discount>0</discount>
</allocated_artefact>
</allocated_artefacts>
</contact_payment>
</contact_payments>
</sage_one_company>