- Overview
- Data Schema
- Paths
- Transport Operation
- Create new transport operation dataPOST
- Get all ongoing transport operation dataGET
- Get a specific transport operation data by IDGET
- Update data for a specific transport operation by IDPUT
- Delete specific transport operation data by IDDELETE
- Get schedule data related to a specific transport operation by IDGET
- Update schedule data for a specific transport operation by IDPUT
- Get all phase data related to a specific transport operation by IDGET
- Append phase data for a specific transport operation by IDPATCH
- Get specific phase data by transport operation ID and phase IDGET
- Update specific phase data by transport operation ID and phase IDPUT
- Get all international consignment notes related to a specific transport operation by IDGET
- Append international consignment notes data for a specific transport operation by IDPATCH
- Get specific international consignment notes data by transport operation ID and reference codeGET
- Update specific international consignment notes data by transport operation ID and reference codePUT
- Delete specific international consignment notes data by transport operation ID and reference codeDELETE
- Get ongoing transport operation data by country code and license plate numberGET
- Get details about the schedule of the ongoing transport operation by country code and license plate numberGET
- Get details about all the phases of the ongoing transport operation by country code and license plate numberGET
- Get specific phase data related to the ongoing transport operation by country code, license plate number, and phase IDGET
- Get all international consignment notes related to the ongoing transport operation by country code and license plate numberGET
- Get specific international consignment notes data related to the ongoing transport operation by country code, license plate number, and reference codeGET
- Get all locations related to transport operationsGET
- Get all locations related to transport operations by location modeGET
- Vehicle
- Create new vehicle data
- Get all vehicle data
- Get vehicle data by country code and license plate number
- Update vehicle data by country code and license plate number
- Delete specific vehicle data by country code and license plate number
- Get details about the geolocation of vehicle by country code and license plate number
- Append new vehicle's geolocation data by country code and license plate number
- Get details about the owner of vehicle by country code and license plate number
- Get details about the insurances of vehicle by country code and license plate number
- Get details about the insurance of vehicle by country code, license plate number and insurance id
- Get details about the revisions of vehicle by country code and license plate number
- Get details about the revision of vehicle by country code, license plate number and revision id
- Driver
- Create new driver data
- Get all driver data
- Get driver data by country code and vat number
- Update driver data by country code and vat number
- Delete specific driver data
- Get details about the driver's license by country code and vat number
- Get details about the driver's traffic violations by country code and vat number
- Get specific driver's traffic violation data by country code, vat number and traffic violation id
- Get details about the driver's tachograph cards data by country code and vat number
- Get specific driver's tachograph card data by country code, vat number and tachograph card id
- Transport Operation
Get all locations related to transport operations by location mode
GET
https://api.company-server/v1/transport-operations/locations/{mode}/
Transport Operation
Request
Path Params
mode
enum<string>
required
Allowed values:
GENERICGATETERMINALPORTAIRPORTSTATION
Example:
GENERIC
Responses
🟢200OK
application/json
Body
array of:
id
integer <int64>
required
>= 1
Example:
123456789
description
string
required
Example:
Place X
Match pattern:
^[\s\S]{1,100}$
mode
enum<string>
required
Allowed values:
GENERICGATETERMINALPORTAIRPORTSTATION
Example:
GENERIC
coordinates
object (Coordinates)
optional
latitude
number <double>
required
>= -90<= 90
Example:
34.052235
longitude
number <double>
required
>= -180<= 180
Example:
-118.243683
Example
[
{
"id": 123456789,
"description": "Place X",
"mode": "GENERIC",
"coordinates": {
"latitude": 34.052235,
"longitude": -118.243683
}
}
]
🟠400Bad Request
🟠404Record Not Found
🔴500Server Error