The GeoView Server REST API enables querying a single track by identifier. A query filters feature data store by specified identifier, returning properties associated with track (if any). Accessing this method requires Read permissions.
Request API method URI definition:
HTTP GET http://api.geoview.be/geoservice/v1/tracks/<id>
Request HTTP URI parameters:
Parameter |
Description |
token |
Access token (returned by this API method). |
id |
Track identifier (returned by i.e. this API method). |
srs |
Spatial reference system identifier (returned by this API method), being an EPSG code value. This parameter is optional. If omitted, default GeoView Server spatial reference system will be used. |
Example HTTP request URI:
HTTP GET http://api.geoview.be/geoservice/v1/tracks/6e39547d-aed2-4e60-9e01-5d5c0921953a?token=3dc718f2-ab20-4f41-86e1-72abcc1810c1
Possible resulting HTTP status codes:
Value |
Description |
200 |
API request succeeded and result(s) were returned. |
400 |
API request failed due to wrong parameter value(s). |
401 |
Supplied API request access token not valid. |
Resulting meta-data structure and example of JSON response:
[
{
"category":"Track",
"constraints":null,
"editable":false,
"id":"id",
"text":"382be5e5-b538-4093-a825-522467ddb540",
"title":"Identifier",
"type":"String",
"value":"382be5e5-b538-4093-a825-522467ddb540",
"visible":true
},{
...
}
]
Description of possible resulting image properties:
Name |
Description |
id |
Track unique identifier. |
created |
Date and time (in UTC format) the track was created. |
description |
Description associated with specific track. |