RAPP.Mercedes.VanCustomerAccount.Api

<back to all web services

VehicleOwnership

The following routes are available for this service:
POST/vehicleownership/

export class ReturnStatus
{
    public ReturnCode: string;
    public Message: string;

    public constructor(init?: Partial<ReturnStatus>) { (Object as any).assign(this, init); }
}

export class Vehicle
{
    public ChassisNumber: string;
    public RegistrationNumber: string;
    public CommissionNumber: string;
    public Make: string;
    public Model: string;
    public NextMOTDate?: string;
    public NextServiceDate?: string;

    public constructor(init?: Partial<Vehicle>) { (Object as any).assign(this, init); }
}

export class VehicleOwnershipResponse
{
    public Status: ReturnStatus;
    public NumberOfPages: number;
    public TotalNumberOfVehicles: number;
    public Vehicles: Vehicle[];

    public constructor(init?: Partial<VehicleOwnershipResponse>) { (Object as any).assign(this, init); }
}

export class VehicleOwnership
{
    public CiamId: string;
    public ItemsPerPage: number;
    public PageNumber: number;
    public SearchString: string;
    public SortColumn: string;
    public SortDirection: string;

    public constructor(init?: Partial<VehicleOwnership>) { (Object as any).assign(this, init); }
}

TypeScript VehicleOwnership DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv

HTTP + CSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /vehicleownership/ HTTP/1.1 
Host: webservices.mbukdatabase.co.uk 
Accept: text/csv
Content-Type: text/csv
Content-Length: length

{"CiamId":"String","ItemsPerPage":0,"PageNumber":0,"SearchString":"String","SortColumn":"String","SortDirection":"String"}
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length

{"Status":{"ReturnCode":"String","Message":"String"},"NumberOfPages":0,"TotalNumberOfVehicles":0,"Vehicles":[{"ChassisNumber":"String","RegistrationNumber":"String","CommissionNumber":"String","Make":"String","Model":"String","NextMOTDate":"\/Date(-62135596800000-0000)\/","NextServiceDate":"\/Date(-62135596800000-0000)\/"}]}