GET Advisories
Returns all advisories.
Request Information
https://511nl.ca/api/v2/get/alerts
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| key |
Developer Key |
string |
Required |
| format |
Valid values are 'xml' or 'json', default 'json'. |
string |
Optional |
Response Information
Resource Description
| Name | Description | Type |
|---|---|---|
| Id |
A unique identifier. |
integer |
| Message |
The advisory details. |
string |
| Notes |
Additional advisory details. |
string |
| StartTime |
The start time of the advisory in Unix time. More information |
integer |
| EndTime |
The end time of the advisory in Unix time. More information |
integer |
| Regions |
A list of regions affected. |
list |
| HighImportance |
Whether the advisory is flagged as high importance. |
boolean |
| SendNotification |
Whether the advisory is disseminated over communication channels (SMS, Email, IVR). |
boolean |
Response Formats
JSON
[
{
"Id": 1,
"Message": "Public Advisory: Trans-Canada Highway Near Port aux Basques to Reopen to One Lane Later Today",
"Notes": null,
"StartTime": 1661789280,
"EndTime": 1661875620,
"Regions": [
"Newfoundland and Labrador Province-wide"
],
"HighImportance": false,
"SendNotification": true
},
{
"Id": 2,
"Message": "Public Advisory: Adverse Weather Anticipated in Southwestern Newfoundland",
"Notes": null,
"StartTime": 1661790240,
"EndTime": 1661876580,
"Regions": [
"Newfoundland and Labrador Province-wide"
],
"HighImportance": false,
"SendNotification": true
}
]
XML
<AlertsList>
<Alerts>
<Id>1</Id>
<Message>Public Advisory: Trans-Canada Highway Near Port aux Basques to Reopen to One Lane Later Today</Message>
<Notes/>
<StartTime>1661789280</StartTime>
<EndTime>1661875620</EndTime>
<Regions>Newfoundland and Labrador Province-wide</Regions>
<HighImportance>false</HighImportance>
<SendNotification>true</SendNotification>
</Alerts>
<Alerts>
<Id>2</Id>
<Message>Public Advisory: Adverse Weather Anticipated in Southwestern Newfoundland</Message>
<Notes/>
<StartTime>1661790240</StartTime>
<EndTime>1661876580</EndTime>
<Regions>Newfoundland and Labrador Province-wide</Regions>
<HighImportance>false</HighImportance>
<SendNotification>true</SendNotification>
</Alerts>
</AlertsList>