GET Advisories
Returns all advisories.
Request Information
https://www.nvroads.com/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": 22,
		"Message": "Road work in place - one lane is currently open - both lanes should be open sometime Tuesday morning 2/4/2020",
		"Notes": null,
		"StartTime": 1580711160,
		"EndTime": 1580849700,
		"Regions":
			[
			"Elko Area"
			],
		"HighImportance": false,
		"SendNotification": true
	}
]XML
<AlertsList>
    <Alerts>
        <Id>22</Id>
        <Message>Road work in place - one lane is currently open - both lanes should be open sometime Tuesday morning 2/4/2020</Message>
        <Notes/>
        <StartTime>1580711160</StartTime>
        <EndTime>1580849700</EndTime>
        <Regions>Elko Area</Regions>
        <HighImportance>false</HighImportance>
        <SendNotification>true</SendNotification>
    </Alerts>
</AlertsList>