- KEYSTONE API Standard
- Data Schema
- Paths & Endpoints
- Transport Operation
- Create new transport operation data
- Get all transport operation data
- Get a specific transport operation data by ID
- Update data for a specific transport operation by ID
- Delete specific transport operation data by ID
- Get schedule data related to a specific transport operation by ID
- Update schedule data for a specific transport operation by ID
- Get all phase data related to a specific transport operation by ID
- Append phase data for a specific transport operation by ID
- Get specific phase data by transport operation ID and phase ID
- Update specific phase data by transport operation ID and phase ID
- Get all international consignment notes related to a specific transport operation by ID
- Append international consignment notes data for a specific transport operation by ID
- Get specific international consignment notes data by transport operation ID and reference code
- Update specific international consignment notes data by transport operation ID and reference code
- Delete specific international consignment notes data by transport operation ID and reference code
- Get specific transport operation data by country code and license plate number
- Get details about the schedule of specific transport operation by country code and license plate number
- Get details about all the phases of specific transport operation by country code and license plate number
- Get specific phase data by country code, license plate number, and phase ID
- Get all international consignment notes related to a specific transport operation by country code and license plate number
- Get specific international consignment notes data by country code, license plate number, and reference code
- 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 dataPOST
- Get all driver dataGET
- Get driver data by country code and vat numberGET
- Update driver data by country code and vat numberPUT
- Delete specific driver dataDELETE
- Get details about the driver's license by country code and vat numberGET
- Get details about the driver's traffic violations by country code and vat numberGET
- Get specific driver's traffic violation data by country code, vat number and traffic violation idGET
- Get details about the driver's tachograph cards data by country code and vat numberGET
- Get specific driver's tachograph card data by country code, vat number and tachograph card idGET
- Transport Operation
Get specific driver's traffic violation data by country code, vat number and traffic violation id
GET
/drivers/{countryCode}/{vat}/traffic-violations/{trafficViolationId}/
Driver
Request
Path Params
countryCode
string
required
vat
string
required
trafficViolationId
string
required
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.company-server/v1/drivers///traffic-violations//'
Responses
🟢200OK
application/json
Body
Details of the traffic violation associated with the driver.
id
integer <int64>
required
>= 1
Example:
123456789
description
string
optional
>= 1 characters<= 100 characters
Example:
Speeding
code
string
required
>= 1 characters<= 20 characters
Example:
SV-123
countryCode
string
required
Example:
IT
Match pattern:
^[A-Z]{2,4}$
fine
number <double>
optional
>= 1
Example:
150
paymentDueDate
string <date>
optional
Example:
2023-07-15
Match pattern:
^\d{4}-\d{2}-\d{2}$
paymentDate
string <date>
optional
Example:
2023-07-10
Match pattern:
^\d{4}-\d{2}-\d{2}$
isPaid
boolean
optional
Example:
true
validityPoints
integer <int32>
optional
>= 0
Example:
1
payload
object (Payload)
optional
Example:
{"additionInformation":"Information XX"}
Additional properties
integer | number | string | boolean
optional
Example
{
"id": 123456789,
"description": "Speeding",
"code": "SV-123",
"countryCode": "IT",
"fine": 150,
"paymentDueDate": "2023-07-15",
"paymentDate": "2023-07-10",
"isPaid": true,
"validityPoints": 1,
"payload": {
"additionInformation": "Information XX"
}
}
🟠400Bad Request
🟠404Record Not Found
🔴500Server Error