Get details of single existing vehicle.
Authorization and access
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.
Url parameters and connection settings
- URL: https://api.platform.trans.eu
- Endpoint: /ext/fleet-api/v1/vehicles/{id} (id eg. “207fcf0e-3afc-4d6f-b4d2-bbe772e82199”)
- Http Method: GET
Headers
- Accept: application/json
- Content-type: application/json
- Authorization: Bearer {access_token}
- Api-key: {unique_app_api-key}
Example response
{
"country": "pl",
"id": 45101,
"kind": "lorry",
"manufacturer": "VOLVO",
"model": "F10",
"name": null,
"registration_plate_number": "D0000000",
"specifications": {
"adr_classes": [
"adr_1",
"adr_1_2"
],
"axle_amount": 4,
"cargo_space_capacity": 24,
"cargo_space_height": 2.05,
"cargo_space_length": 5,
"cargo_space_volume": 21,
"cargo_space_width": 2.05,
"combustion_level": 25,
"combustion_norm": "EURO 6",
"date_of_first_registration": null,
"engine_capacity": 1900,
"equipments": [
"gps",
"lift",
"adr"
],
"fuel_type": null,
"pallets": {
"amount": 5,
"type": "europalette"
},
"permissible_axle_load": 5,
"permissible_total_weight": 20,
"permissible_trailer_weight": 15,
"vehicle_height": 3,
"vehicle_length": 6,
"vehicle_width": 4,
"ways_of_loading": [
"top",
"side"
],
"year_of_production": 2018
},
"status": "ACTIVE",
"subtype": "food-tanker",
"type": "tanker",
"vehicle_id": "207fcf0e-3afc-4d6f-b4d2-bbe772e82199",
"vin": "123456789101112"
}