GET Message Signs
Returns all VMS.
Request Information
https://511yukon.ca/api/v2/get/messagesigns
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
key |
Developer Key |
string |
Required |
format |
Valid values are 'xml' or 'json', default 'json'. |
string |
Optional |
lang |
Valid values are 'en' or 'fr', default 'en'. |
string |
Optional |
Response Information
Resource Description
Name | Description | Type |
---|---|---|
Id |
A unique identifier. |
string |
Name |
A name assigned to the message sign. It will contain a fairly good description of the location where the message sign is deployed. |
string |
Roadway |
The roadway which this message sign is on. |
string |
DirectionOfTravel |
One of the following directions of travel: None, All Directions, Northbound, Eastbound, Southbound, Westbound, Inbound, Outbound, Both Directions. |
string |
Messages |
An collection of the messages which are currently rotating on the message sign. |
string |
Latitude |
The latitude describing the location. Format: double between -90 and 90. |
double |
Longitude |
The longitude describing the location. Format: double between -180 and 180. |
double |
LastUpdated |
The date the message sign's details were last updated in Unix time. More information |
integer |
Response Formats
JSON
[ { "Id": "YT-DMS--200771", "Name": "UNIT # 59399", "Roadway": null, "DirectionOfTravel": "Southbound", "Messages": [ "NO_MESSAGE" ], "Latitude": 60.71953, "Longitude": -135.08099, "LastUpdated": 1631571116 }, { "Id": "YT-DMS--178398", "Name": "Unit # 59381-C", "Roadway": null, "DirectionOfTravel": "Unknown", "Messages": [ "NO_MESSAGE" ], "Latitude": 60.06169, "Longitude": -128.71545, "LastUpdated": 1626895015 } ]
XML
<MessageSignsList> <MessageSigns> <Id>YT-DMS--200771</Id> <Name>UNIT # 59399</Name> <Roadway/> <DirectionOfTravel>Southbound</DirectionOfTravel> <Messages> <Messages>NO_MESSAGE</Messages> </Messages> <Latitude>60.71953</Latitude> <Longitude>-135.08099</Longitude> <LastUpdated>1631571116</LastUpdated> </MessageSigns> <MessageSigns> <Id>YT-DMS--178398</Id> <Name>Unit # 59381-C</Name> <Roadway/> <DirectionOfTravel>Unknown</DirectionOfTravel> <Messages> <Messages>NO_MESSAGE</Messages> </Messages> <Latitude>60.06169</Latitude> <Longitude>-128.71545</Longitude> <LastUpdated>1626895015</LastUpdated> </MessageSigns> </MessageSignsList>