Superannuation Dashboard
Planned Outages
The current planned outages are available at this URL
http://sses.status.ato.gov.au/api_get/plannedOutage
Here is an example output from the plannedOutage service:
{
"preview": false,
"init_offset": 0,
"messages": [
],
"fields": [
"all_services",
"end_date",
"message",
"start_date"
],
"rows": [
[
"SuperTICK1",
"SuperTICK2",
"SuperTICK3",
"SuperMATCH2",
"EmployerTICK",
"SuperMATCH",
"FVS",
"EPF"
],
"1482127200",
"Services may become available sooner(from 12 / 02 / 2017 3: 50 am onwards)",
"1482105720"
]
}
Fields
Here are the response fields, and what they mean:
| Filed | Description | Sample |
|---|---|---|
| all_services | Lists all the services that are currently undergoing a planned outage. |
|
| end_date | The end date of the planned outage in epoch time | 1482127200 |
| message | The message that accompanies the planned outage | Services may become available sooner (from 12/02/2017 3:50 am onwards) |
| start_date | The start date of the planned outage, in epoch time | 1482105720 |
Multiple outages
Multiple outages look like this:
{
"preview": false,
"init_offset": 0,
"messages": [
],
"fields": [
"all_services",
"end_date",
"message",
"start_date"
],
"rows": [
[
[
"SuperTICK1",
"SuperTICK2",
"SuperTICK3",
"SuperMATCH2",
"EmployerTICK",
"SuperMATCH",
"FVS",
"EPF"
],
"1482127200",
"planned outagetest",
"1482105840"
],
[
[
"SuperTICK1",
"SuperTICK2",
"SuperTICK3",
"SuperMATCH2",
"EmployerTICK",
"SuperMATCH",
"FVS",
"EPF"
],
"1482127200",
"testing",
"1482124740"
]
]
}
No outages
When no outages exist, the response will look like this:
{
"preview": false,
"init_offset": 0,
"post_process_count": 0,
"messages": [],
"fields": [],
"rows": []
}