Eine Geozone anhand ihrer ID abrufen
Diese API ermöglicht das Abrufen einer Geozone anhand ihrer ID.
Anfrage
GET /api/v2/geozones/{geozoneID} HTTP/1.1
Host: gear.cloud.studio
Authorization: Bearer {accessToken}Parameter
| Name | Description |
|---|---|
| accessToken | Access token with permissions to read geozone data. See this page for more information. The access token can also be sent as part of the query string, using the "accessToken" parameter. |
| geozoneID | Unique identifier of the geozone for which information is requested. |
Antwort
Die Antwort enthält die angegebene Geozone, wie in diesem Beispiel gezeigt:
{
"GeozoneID":35,
"ClientID":79,
"Description":"Hokkaido",
"ExternalCode":"3424",
"Polygon":{
"PolygonID":35,
"Points":[
[
43.93935551,
142.57453478
],
[
43.49469073,
143.60724962
],
[
43.06278289,
143.49738634
],
[
42.9020392,
142.92609728
],
[
42.96638711,
142.6624254
],
[
42.96638711,
142.17902696
],
[
42.9020392,
141.80549181
],
[
42.88594172,
141.49787462
],
[
43.06278289,
141.34406603
],
[
43.19107519,
141.6077379
],
[
43.36703768,
141.93732775
],
[
43.669774,
141.82746446
],
[
43.82849869,
142.02521837
],
[
43.90770318,
142.37678087
]
],
"BorderColor":0,
"BorderWidth":3,
"BorderOpacity":100.0,
"FillColor":0,
"FillOpacity":50.0
},
"Vehicles":[
{
"VehicleID":133,
"Description":"Asset 70",
"LicensePlate":"XD1320070"
},
{
"VehicleID":134,
"Description":"Asset 71",
"LicensePlate":"XD1320071"
},
{
"VehicleID":135,
"Description":"Asset 72",
"LicensePlate":"XD1320072"
},
{
"VehicleID":136,
"Description":"Asset 73",
"LicensePlate":"XD1320073"
},
{
"VehicleID":138,
"Description":"Asset 75",
"LicensePlate":"XD1320075"
},
{
"VehicleID":139,
"Description":"Asset 76",
"LicensePlate":"XD1320076"
},
{
"VehicleID":140,
"Description":"Asset 77",
"LicensePlate":"XD1320077"
},
{
"VehicleID":141,
"Description":"Asset 78",
"LicensePlate":"XD1320078"
},
{
"VehicleID":142,
"Description":"Asset 79",
"LicensePlate":"XD1320079"
}
],
"SequenceNumber":74017203,
"Enabled":true
}Geozone-Datentyp
Einführung Der Geozone-Datentyp ermöglicht das Abrufen der Konfiguration einer Geozone. Im Folgenden sind alle Eigenschaften des Geozone-Datentyps aufgeführt.
Eine Liste von Geozonen anhand von Parametern abrufen
This API allows retrieving a list of geozones using parameters. Request GET /api/v2/geozones?clientID={clientID}&maxCount={maxCount} HTTP/1.1 Host:...