v1

latestOpenAPI 3.0.12026-07-231817.4 KB

Retrieve Keeper at Date of Event for a vehicle.

post/v1/vehicle-keeper

Request body

enquirerIdstring required

Identifier for the enquirer.

linkProviderIdstring

Identifier for the link provider, should there be one.

reasonCodestring required

Code indicating the reason for the enquiry.

registrationNumberstring

Vehicle's registration number.

chassisVinstring

Vehicle's chassis identification number.

eventDatestring YYYY-MM-DD required

The date of event in format YYYY-MM-DD.

referenceNumberstring required

Alpha-numeric reference provided by the enquirer.

Example request

{
  "enquirerId": "AA001",
  "linkProviderId": "A01",
  "reasonCode": "00ET",
  "registrationNumber": "XYZ1",
  "chassisVin": "VF33BRFNC83846199",
  "eventDate": "2006-05-26",
  "referenceNumber": "ABC123"
}

Response

Keeper details at date of event

registrationNumberstring

Vehicle's registration number.

chassisVinstring

Vehicle's chassis identification number.

makestring

The make of the vehicle.

modelstring

The model of the vehicle.

fleetNumberstring

The assigned fleet number of the vehicle.

colourstring

The vehicle's colour.

secondaryColourstring

Another colour present on the vehicle.

messagestring

Information message for stolen, scrapped and exported vehicles.

taxStatus'Not Taxed for on Road Use' | 'SORN' | 'Untaxed' | 'Taxed'

The current tax status of the vehicle.

seatingCapacityinteger

The seating capacity of the vehicle.

bodyTypestring

The body type of the vehicle.

taxClassstring

The tax class of the vehicle.

Example response

{
  "registrationNumber": "XYZ1",
  "chassisVin": "VF33BRFNC83846199",
  "make": "PEUGEOT",
  "model": "307 CC",
  "colour": "Black",
  "secondaryColour": "Red",
  "keeper": {
    "title": "MR",
    "firstNames": "Simon",
    "lastName": "Fleet",
    "companyName": "Microsoft",
    "address": {
      "line1": "DVLA Long View Rd",
      "line2": "Morriston",
      "line3": "Clase",
      "line4": "Swansea",
      "line5": "West Glamorgan",
      "postcode": "SA6 7JL"
    }
  },
  "message": "Vehicle stolen at date of event",
  "taxStatus": "Taxed",
  "seatingCapacity": 5,
  "bodyType": "Box Van",
  "taxClass": "Disabled"
}
All 1 operations