Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 7 Next »

Overview


Xero.com module for HostBill enables data export from HostBill billing platform to Xero.com accounting software. The module allows to seamlessly export existing customers, transactions and issued invoices information and set automation rules to export new customers, new recurring invoices and new transactions into Xero.com accounting software.

Activating the module


  1. If the plugin is included in your HostBill edition you can download it from your client portal.
  2. If the plugin is not included in your HostBill edition you can purchase it from our marketplace and then download it from the client area.
  3. Once you download the plugin extract it in the main HostBill directory.
  4. Go to Settings → Modules, find and activate Xero.com plugin.
  5. Once the plugin is activated you will be directed to Settings→ Modules→ Plugins to configure the plugin.

Module configuration


Fill in the configuration fields

  1. Consumer Key
  2. Consumer Secret
  3. Sales Account Code
  4. Bank account ID
  5. Private key file
  6. Certificate file
  7. Tick if you want to Export Invoice number



Obtaining credentials from Xero


First of all you must have an active Xero account.

Log in to your Xero developer account. 

For App configuration you can use certificate located in module directory, if you generate your own files update appropriate fields in the module's configuration with path to your files.

To use the Xero service you must have a create Code Flow app:

  1. Go to the top menu of the page  My apps
  2. Click on the New App button
  3. Enter the App name and Organisation
  4. Upload your certificate (.cer or .crt) file
  5. Next select the checkbox "Agree Terms" and click on the Create app button
  6. Copy the Consumer Key and enter it in the appropriate field in the module's configuration
  7. Copy the Consumer Secret and enter it in the appropriate field in the module's configuration



Clearing out locally stored data


If you were just testing extension in test/demo mode and wish to clear out information about exported invoices/customer/transactions from HostBill database, allowing you to re-export data again, you can do so by removing locally stored Xero ids from HostBill database. To do so, login to your HostBill ssh, access HostBill database (login details are stored in includes/config.php) and run following queries against HostBill db:

TRUNCATE TABLE `xerocom_clients`;
TRUNCATE TABLE `xerocom_invoices`;
TRUNCATE TABLE `xerocom_transactions`;


  • No labels