Creating and working with employers
One of the core concepts in SuperAPI is that of an employer. The employer entity represents the owner of a business and as such, all actions related to a business will involved this employer entity in some form. In your system this may be called a "business" or "organisation" but the concept is the same.
Some of the actions in SuperAPI that require an employer are:
- Showing the employer embed so that a default super fund and stapling can be configured.
- Creating an onboarding session and showing the embed so that we can collect details like bank accounts or super selections from an employee.
- Using our SuperSend product to transform SAFF files into ABA files so that super payments can be disbursed.
INFO
Before you start, make sure that you have verified your product API key is working correctly.
Anatomy of an employer
To create an employer in the system, at least three pieces of information are required.
- The
abn
- This is the Australian Business Number (ABN) that this company is registered with at the ATO. - A
name
- The name of this company - A
remote_id
- The unique id of the employer (organisation, business, company etc) in your database. This is returned to you in webhook events so you can easily identify the record that the webhook is referencing. - A
product_id
- The id of the product that you are creating the employer under.
INFO
Don't know your product_id
? You can fetch the details about a product by using the key associated with it.
We have a number of other fields on an employer and the more details you can provide, the more functionality that can be unlocked in SuperAPI. To see the full list of attributes and an explanation of what they do, please consult our Swagger documentation on employers
Creating an employer
The following bash script can be used to create an employer object.
curl -X POST https://api.superapi.com.au/api/v1/employer \
-H "Content-Type: application/json" \
-H "x-api-key: superapi_yourapikeysDZFUnrDIyNp7YTAPDcJXge" \
-d '{
"name": "The company name",
"abn": "12345",
"remote_id": "12345"
}'
INFO
Make sure you replace your x-api-key
with the product key that has been given to you.
After submitting the request above, you will be returned an employer object. It is a good idea to store that data against the record that it was created in your system. An example how how we do this is:
Showing the employer embed
Once you have the employer object created, you can generate a secure URL to show the embed. This step allows an employer to configure details about themselves.
To create the embed URL:
curl -X POST https://api.superapi.com.au/api/v1/employer/:id/generate-embed-url \
-H "Content-Type: application/json" \
-H "x-api-key: superapi_yourapikeysDZFUnrDIyNp7YTAPDcJXge" \
-d '{
"app": "super_settings",
"session_id": "f4ffe46e-170d-407b-8fc9-f6b594da9e5d",
"valid_until": "2024-05-10T00:10:29Z"
}'
To configure the embed you have three parameters you can use, they are:
app
- This controls the app that is launched in the embed when called. Currently we only supportsuper_settings
but plan to add additional apps in the future.session_id
- This is similar to a cookie and is used in our system to provide "state" for the user of the app. Set this to something unique for the user in your system like users primary key id in your users table.valid_until
- At what point in the future that this embed will stop working. This should not exceed more than 2 hours, nor set in the past. It can be very short as the validation is performed only when connecting for the first time, existing embeds that are still open do not expire when this time is up. Beware that Chrome is very fond of automatically reloading pages in the background (including iFrames) so this can cause a connection error.
INFO
Make sure you set a valid_until
within a 2 hour window in the future and set to the UTC timezone.
Typically you would want to create these embed URLs on page load. I.e. each time an employer loads the page, you create a use a new embed url. As such, the valid_until
must be a max of two hours. Consider how long it will take the employer to interact with the page (including getting up going for a break before coming back!). Google Chrome also has a tendency to unload pages in background tabs and reload them when the user returns to the page. A valid_until
which is too low will cause an error when this happens.
DANGER
Generated URLs are sensitive. Anyone with access to the URL is authenticated as if they were the logged in user. Don't store generated URLs in the database.
One you have the generated URL, take a look at our JavaScript library which is designed to make it easy to work with them in the browser.