Allows to get location updates for previously created monitoring task.
Url parameters and connection settings
- URL: https://api.platform.trans.eu
- Endpoint: /ext/loads-monitoring-api/v1/monitorings/{id}/positions
- Method: GET
Headers
- Content-type: application/json
- Accept: application/json
- Authorization: Bearer {access_token}
- Api-key: {unique_app_api-key}
Authorization
Authorization process is described here. Each API request must also consist of unique Api-key obtained during application registration together with client_id and client_secret.
Response body example
{
"positions": [
{
"coordinates": {
"latitude": 53.765693,
"longitude": 20.522543
},
"device_id": 681550,
"position_time": "2021-02-18T06:06:16.000Z"
}
]
}