This GeoView Server REST API method returns available recording devices (cameras) based on specified camera maker/producer. Complete list of camera makers is being returned by this API method. Accessing this method requires Read permissions.
Request API method URI definition:
HTTP GET http://api.geoview.be/geoservice/v1/catalogs/cameras/<id>
Request HTTP URI parameters:
Parameter |
Description |
token |
Access token (returned by this API method). |
id |
Camera maker identifier (returned by this API method). |
Example HTTP request URI (using "Kodak" camera maker):
HTTP GET http://api.geoview.be/geoservice/v1/catalogs/cameras/95ec2d02-09c5-fd6a-d20a-88df019ac56b?&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. |
Response JSON structure for a single camera maker (please note that API method may return array of categories):
Field |
Description |
id |
Camera model identifier. |
value |
Camera model name. Please mind possible escape characters ("\") and remove them. |
Example JSON response (using "Kodak" camera maker):
[
{
"id":"1956724f-20da-99b3-60ef-28b9f30e630e",
"value":"Kodak DC200"
},
{
"id":"7700f02f-6557-f25f-1206-c7d32f7555a6",
"value":"Kodak DC215"
},
{
...
}
]