So you want to integrate with the MYOB Business API - fantastic. Lets walk through what you need to do to get up and developing against our API.
The first thing you'll need to do is sign up for API access. Do that by clicking the button below - it's free
Once you have access, you'll need to register your 'app' and receive an API Key and API Secret. You do this via the my.MYOB portal.
Now you have access & keys, check out our documentation and SDK to get you up and running fast.
As of May 2020, MYOB is in the process of progressively upgrading existing customers to Essentials/MYOB Business that is built on the same platform as AccountRight. Therefore support for the Old Essentials API will be dependent on the migration of individual Essentials clients. Once a file has been upgraded to the new version of Essentials, it will no longer be able to use the Old Essentials API.
Both AccountRight, Essentials and MYOB Business integrate with the API, yet it is important to understand which product you are to integrate with. The API endpoints accessibility remains the same for both products, but there are functionality/features that are only visible in AccountRight UI, but not in the Essentials UI.
MYOB Business will replace our MYOB Essentials and MYOB AccountRight product lines for new customers in Australia
Step one: Access the API depends on the file location:
http://localhost:8080/accountright/
http://[IP ADDRESS OF COMPUTER TO ACCESS]:8080/accountright/
https://api.myob.com/accountright
Step two: A read-only property UIAccessFlags could return one of below values depending on the product type:
0. Local AccountRight
2. Essentials
3. AccountRight & AccountRight Browser
Before you can start working on a new app, or make your existing app work with the Online API, you first need to register your app and receive an API key, and an API secret. These are used when authenticating your application and are set in the headers for all calls to the API.
Follow these steps to get started with the AccountRight Online API:
Now that you have your Access Keys you need to access the Online API. Just like the desktop above it's pretty straight forward.
https://api.myob.com/accountright/
Before anything happens you'll need to authenticate, which allows the user of your app to assign access permissions to your application. This is done using OAuth Authentication and the steps are spelled out on our authentication page.
Once you have your access token, simply set the headers on every call, and pass these as you make the calls to the URLs you are requesting.
If you want to connect to the desktop API, check out our Knowledgebase article here - Connecting to the Desktop API.