Best Of
#TipTuesday - Setting up a bank feed in Reckon One 🏦
Looking to setup a bank feed?
You can set up your bank feed in Reckon using one of two available methods.
- Direct Feed
- Open Banking
Yodlee is available as a third method for setting up your bank feed. However, due to ongoing issues with this option, we recommend using either Direct Feed or Open Banking, which are more reliable options.
How to set up your bank feed in Reckon One?
- Log in to your Reckon One book.
- Navigate to Banking ➡️ Bank Connections.
- Click on Add Feed.
- Choose your preferred Bank Feed type from the available options:
- Direct Feed
- Open Banking
- (Yodlee is also available but currently not recommended due to ongoing issues)
- Select your bank from the list.
- Follow the on-screen prompts to complete the setup process.
Example: Setting Up a Direct Feed with CommBank
- Log in to your Reckon One book.
- Go to Banking ➡️ Bank Connections.
- Click Add Feed.
- Choose Direct Feed as your bank feed type.
- From the list of banks, select Commonwealth Bank (CommBank).
- Enter your account details:
- Click Add - your feed will now appear in your Reckon One book.
After adding the feed, a pop-up will appear prompting you to complete an authorization form:
- Click Download the form now.
- Fill in the required information.
- Sign the form by hand (digital signatures are not accepted).
- Submit the form as instructed to complete the setup.
💡Tip: Don't use a digital signature - Banks tend not to accept these and refuse the form.
Open Banking
You can also use Open Banking to set up a bank feed if you have an ABN.
Open Banking is a financial service model that allows third-party providers to access customer financial data from banks and other institutions, with the customer's explicit consent.
🔄 Setting Up a Bank Feed via Open Banking
- Go to the Bank Connections screen in your Reckon One book.
- Click Add Feed.
- Choose Open Banking as your bank feed type.
- Select your bank from the list provided.
- Click Continue to begin the setup process.
Please find the attached video for your reference - Open Banking - Setting up a bank feed in Reckon One 🏦 — Reckon Community
🌐 Connect via ACSISS My Data
- Reckon will redirect you to a secure browser page to connect with ACSISS My Data.
- You’ll be prompted to either:
- Create a new ACSISS account, or
- Log in if you already have one.
Once connected, follow the on-screen instructions to authorize the data sharing and complete the setup.
🎉 Final Steps: You're Almost There!
- Follow the prompts on the ACSISS My Data page to complete the connection process.
- Once done, your Open Banking feed will be successfully linked to your Reckon One book.
If your account doesn’t appear in the list, it might not be enabled for Open Banking yet.
👉 Check here CDR Ready by SISS Data Services to see if your bank is supported.
Setting up an Open Banking feed for a business account
To have a Bank Feed set-up for Business account, a non-individual account holders (e.g., trusts) to be added as a Nominated Representative before they can share data. Click here for more information - Connect your business bank account
That's it for today! Hopefully this helps you get up and running with setting up a bank feed to your Reckon One book!
Stay tuned for more tips 😊
Re: Reckon Accounts Hosted API - Authentication error (but no details) and integration query
1) In order to connect to a data file on the Hosted platform via the API it is necessary to authorise with the Identity server.
Authentication - Hosted API - Reckon Help and Support Centre
Then when connecting to a specific data file you can provide the UserName and the Password for the integrated application that you are developing.
Authentication - Hosted API - Reckon Help and Support Centre
APIs: Details - Reckon Developer Portal
2) Is the redirect URI oauth.pstmn.io the same one that you provided when you put through your Developer Partner application that is associated with your ClientID and ClientSecret?
Check the email that you would have originally received when that confirms your ClienID, ClientSecret and RedirectURI.
3) Did you submit the question via the web ticket or did you email directly?
If you used the web ticket, did you indicate that you require assistance with "Reckon API" as the product?
If you emailed directly, then you would have received the automated response email that states:
Dear Customer,
Thank you for reaching out.
Please note that as of August 3, 2025, we are no longer accepting direct emails for support. Instead, you will need to lodge a web ticket. Lodging a web ticket ensures faster responses, organised tracking of your inquiry, and access to dedicated support resources tailored to your needs.

Re: Reckon Accounts Hosted API - Authentication error (but no details) and integration query
Yes, Reckon Hosted is essentially Reckon Desktop running in the cloud.
The Reckon Hosted API is mainly a transport layer that allows you to send and receive Reckon Desktop SDK/XML requests and responses through their servers.
That means you still need to understand how Reckon Desktop SDK/XML structure works (for example, how to build <QBXML> requests and parse the corresponding <QBXML> responses).
So while the Hosted API lets you automate communication remotely, the underlying logic and data formats remain the same as Reckon Desktop.

Re: Reckon Accounts Hosted API - Authentication error (but no details) and integration query
Hi @mattmartin
The Reckon API uses OAuth2 Authorization Code Flow, so it follows the same process as other modern APIs that use secure token-based access. Below are the steps and relevant API calls you’ll need to handle in your pipeline setup:
Step 1. User Authorization (one-time only)
You must first obtain an authorization code by redirecting the user to Reckon’s identity server:
GET https://identity.reckon.com/connect/authorize?
response_type=code
&client_id={YOUR_CLIENT_ID}
&scope=open read write offline_access
&redirect_uri={YOUR_REDIRECT_URI}
&state=random_state
- The user logs in and grants permission to your app.
https://your-redirect-uri?code={AUTHORIZATION_CODE}&state=random_state
- Step 2. Exchange Authorization Code for Tokens
Use the code you received to get the Access Token and Refresh Token:
POST https://identity.reckon.com/connect/token
Content-Type: application/x-www-form-urlencoded
grant_type=authorization_code
&code={AUTHORIZATION_CODE}
&redirect_uri={YOUR_REDIRECT_URI}
&client_id={YOUR_CLIENT_ID}
&client_secret={YOUR_CLIENT_SECRET}
You’ll store both the access_token
and refresh_token
.
The access token is used to call Reckon APIs, while the refresh token lets you renew access later without user interaction.
Step 3. Use Access Token to Call the API
Now you can call any Reckon API endpoint by including the Authorization
header:
Step 4. Refresh the Access Token (for automation)
When your access token expires (typically after 6 hour), use the refresh token to get a new one automatically, this is what you’ll implement in your Azure Fabric Pipeline:
You can now continue your ingestion process automatically, without any manual login.
In Summary
- The first login is manual (user grants permission).
- After that, Azure Fabric Pipelines can automatically:
- Store and use the
refresh_token
- Periodically request a new
access_token
- Continue calling Reckon’s API without further prompts
- Store and use the
I don’t work for Reckon directly, but these are the correct steps based on their OAuth2 implementation. The most common issue that causes “unexpected error” is a mismatch between your registered redirect URI and the one used in Postman. Make sure they are identical (including protocol and trailing slash).
Thanks,
Phuong

Re: Employment Types - Can I add a new one?
A salary/permanent employee is classed as full time.
You can add their salary in their pay details
Re: Delays with online banking opening
The size show in the screenshot you have provided is for the QBW file only.
At around 250MB the size of that file is not large.
Since you've indicated that the backups are done every 2 weeks and it doesn't take too long then it is unlikely that your TLG file is very large.
As a test consider the following:
- Click on the File menu and select Close Company/Logoff
- Click on the Open or restore an existing company button.
- Either make a current backup or make use of a recently made backup.
- Restore the backup by adding a prefix "TEST ONLY - " to the data file name.
- Once the backup file has been restored where the resulting data file has been renamed due to the addition of the prefix to the data file name, click on the Company menu and select Company Information then add the prefix "TEST ONLY - " to the company name. This will clarify that the data file you are currently in is the test and not the original file so that no one can 'accidentally' open and start doing work on the test file.
- Go to the Lists menu then select Chart of Accounts
- Edit each of your bank account that has the lightning bolt (indicating online access is enabled) and remove any bank Account number and BSB number, then disable the Online Account Access.
- Once there are no more bank accounts with a lightning bolt, create a brand-new test bank account
- For this test bank account, add a BSB and Account Number and then enabled the Online Account Access. (As a test you do not need to put your real banking details)
- Then go to the Banking menu and select Online Banking Centre
- Confirm how long it takes from the time you select Online Banking Centre to the time that the screen is displayed.
- If it still takes around 10 to 15 minutes, then there may be no other way to make it go any faster.
- If it is faster, then go back to the Chart of Accounts List and re-enable the online banking access to your real bank account, adding back its bsb, account number and other details as needed.
- Then go to the Banking menu and select Online Banking Centre
- Confirm once more how long it takes from the time you select Online Banking Centre to the time that the screen is displayed.
- If it is still faster than before, then that is a good thing. Enable the online account access for any remaining bank accounts and try the process again to confirm whether it is still faster or if it is slower again.
- If it is once again slow, then something about the existing bank account (your real ones) that is doing something in the background before the online banking centre is displayed.
Let us know how you go with following the process above.

Re: Employment Agreement - viewing employees
Hi @SydneyFlow
Have to tried generating Employee List - Payroll Report?
In this report, you can filter the report and make a selection for Employment Agreement as in the screenshot attached below -
I hope this helps. Thank you!
Regards
Tanvi
Re: Changing Template Formatting, one blasted cell at a time!!!
Try it . . . I certainly do it all the time to line things up if I need to (ctl-shft I think . . . Not at my keyboard where I just do it automatically)
We use different templates on behalf of various clients so there's no one size fits all that we can edit. Even so, it shouldn't be that difficult, it seems almost Excel based so shouldn't be hard to select and edit like you would with spreadsheet cell formatting

Re: Adding line item classification blanks out tax code and other fields
My apologies, Invoices are fine.
It's happening in Bills and Banking transactions.
In Bills > Add > enter Supplier > enter Account > enter Description > enter Classification then tab
at this point, Description is erased, Tax code that was NCG goes blank, Tax goes blank, Amount changes from $0.00 to $0
The same thing happens when entering a Payment in Banking transactions, ie
In Reckon One transactions > Add payment > New > enter Account > enter Description > enter Classification then tab
at this point, Description is erased, Tax code that was NCG goes blank, Tax goes blank, Amount changes from $0.00 to $0
Note, we have the applicable Tax code set in each Account in Chart of Accounts at Default tax code. This means that, when creating a Bill or Payment, once the Account is entered, Reckon One prefills the Tax code field with the Tax code for that Account. It is that prefilled Tax code that is disappearing when a Classification is entered.

Re: Fast coding - bankdata update
Do you have the Uncoded filter applied at the moment?
If so, when the rule runs it will remove it from view if that filter has been applied since its been coded ie. its no longer uncoded.
If you have the ALL filter applied it will show everything on-screen.
