GET apioauth/matrixv2/dot/{dotNumber}/services

Get the services via dot number

Request Information

URI Parameters

NameDescriptionTypeAdditional information
dotNumber

The dot number to query

string

Required

Body Parameters

None.

Response Information

Resource Description

A collection of ServiceUsDotResponses

Collection of ServiceUsDotResponse
NameDescriptionTypeAdditional information
ServiceId

The id of the service

integer

None.

VehicleRegistration

The vehicle registration

string

None.

VehicleOtherRegistration

The vehicles other registration number

string

None.

Vin

The vehicle vin

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ServiceId": 1,
    "VehicleRegistration": "sample string 2",
    "VehicleOtherRegistration": "sample string 3",
    "Vin": "sample string 4"
  },
  {
    "ServiceId": 1,
    "VehicleRegistration": "sample string 2",
    "VehicleOtherRegistration": "sample string 3",
    "Vin": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfServiceUsDotResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ServiceUsDotResponse>
    <ServiceId>1</ServiceId>
    <VehicleRegistration>sample string 2</VehicleRegistration>
    <VehicleOtherRegistration>sample string 3</VehicleOtherRegistration>
    <Vin>sample string 4</Vin>
  </ServiceUsDotResponse>
  <ServiceUsDotResponse>
    <ServiceId>1</ServiceId>
    <VehicleRegistration>sample string 2</VehicleRegistration>
    <VehicleOtherRegistration>sample string 3</VehicleOtherRegistration>
    <Vin>sample string 4</Vin>
  </ServiceUsDotResponse>
</ArrayOfServiceUsDotResponse>