Skip to content

List of webhooks

This document contains information around the list of webhooks that are emitted from SuperAPI. You can use this reference to find out:

  1. When and why a webhook is emitted
  2. The contents of that webhook.

We will also go into some detail around some hypothetical actions you might want to take in the system upon receiving a particular webhook.

Understanding SuperAPI webhooks

The subject

Webhooks are always based on a subject entity in our system. Currently these subject entities are one of either an employer or onboarding_session but we may extend this to more entities depending on the nature of the webhook. For example, if we were to emit a webhook that was related to an event occurring with a product in our system then the subject of that webhook would be a product. You can also think of the webhook subject being a kind of namespace for the webhook.

WARNING

We may introduce additional webhook namespaces for employee and products in the future.

The event

Webhooks are sent based on events occurring in our system and this information is also passed to the consumer of the webhook. Events include things like an employer changing their settings or an onboarding session being completed.

The payload

Webhooks contain a minimal payload designed to give you enough information to be able to make a request to our API to fetch further information. All webhooks follow a similar structure, an example being:

json
{
  "subject": "employer",
  "event": "employer_settings_changed",
  "id": "c2bc0c04-6b98-4333-91a6-919f5ebc9000",
  "remote_id": "1234",
  "url": "https://api.superapi.com.au/api/v1/employers/c2bc0c04-6b98-4333-91a6-919f5ebc9000"
}
fieldkinddescription
subjectstringThe entity that the webhook belongs to
eventstringThe event in our system that triggered the webhook
idstringThe primary key of the entity that triggered the webhook
remote_idstringThe remote_id of this entity in your system
urlstringThe URL you should call to fetch the entity that triggered the event

Webhooks list

Employers

NameFired whenNotes
employer_settings_changedAn employer has changed settings that are relevant to our partner, e.g. they have picked a default fund or their stapling status has changedYou should fetch the employer object from SuperAPI and check if it is now correctly configured to allow onboarding sessions to be created.

Onboarding sessions

NameFired whenNotes
onboarding_session_changedAn employee has made progress through the onboarding sessionFired when the employee has made progress through the onboarding session. Useful for showing the progress of the user through the onboarding session, e.g. on a dashboard. Can also be used to populate details into systems before the onboarding session has been completed. For example, payroll details could be populated early by listening to this webhook then updated again once the final webhook has been sent.
onboarding_session_completedAn employee has completed an onboarding sessionFired at the completion of the onboarding session. This will contain all information gathered about the employee, including any long running processes (e.g. register a member via an MRR). No more webhooks will be sent after this

The future of super is embedded