Superannuation Dashboard
Announcements
Announcements are available at this URL
http://sses.status.ato.gov.au/api_get/announcement
Here is an example output from the announcement service:
{
"preview": false,
"init_offset": 0,
"messages": [],
"fields": ["datePosted", "message", "title"],
"rows": [
["1482066000", "Drive safely", "Happy Holidays"]
]
}
Fields
Here are the fields used in the announcements service:
| Filed | Description | Sample |
|---|---|---|
| datePosted | The date that the announcement was posted, in epoch time | 1482127200 |
| message | The message that accompanies the announcement | Drive Safely |
| title | The title of the announcement | Happy Holidays |
Multiple announcements
Multiple announcements look like this:
{
"preview": false,
"init_offset": 0,
"messages": [],
"fields": ["datePosted", "message", "title"],
"rows": [
["1482112020", "Drive safely", "Happy Holidays"],
["1482124200", "Enjoy the break", "Happy New Year"]
]
}
No announcements
No announcements look like this:
{
"preview": false,
"init_offset": 0,
"post_process_count": 0,
"messages": [],
"fields": [],
"rows": []
}