RAPP.Mercedes.VanCustomerAccount.Api

<back to all web services

VehicleOwnership

The following routes are available for this service:
POST/vehicleownership/
import java.math.*
import java.util.*
import net.servicestack.client.*


open class VehicleOwnership
{
    var CiamId:String? = null
    var ItemsPerPage:Short? = null
    var PageNumber:Short? = null
    var SearchString:String? = null
    var SortColumn:String? = null
    var SortDirection:String? = null
}

open class VehicleOwnershipResponse
{
    var Status:ReturnStatus? = null
    var NumberOfPages:Short? = null
    var TotalNumberOfVehicles:Short? = null
    var Vehicles:ArrayList<Vehicle> = ArrayList<Vehicle>()
}

open class ReturnStatus
{
    var ReturnCode:String? = null
    var Message:String? = null
}

open class Vehicle
{
    var ChassisNumber:String? = null
    var RegistrationNumber:String? = null
    var CommissionNumber:String? = null
    var Make:String? = null
    var Model:String? = null
    var NextMOTDate:Date? = null
    var NextServiceDate:Date? = null
}

Kotlin VehicleOwnership DTOs

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

HTTP + JSV

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/jsv
Content-Type: text/jsv
Content-Length: length

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

{
	Status: 
	{
		ReturnCode: String,
		Message: String
	},
	NumberOfPages: 0,
	TotalNumberOfVehicles: 0,
	Vehicles: 
	[
		{
			ChassisNumber: String,
			RegistrationNumber: String,
			CommissionNumber: String,
			Make: String,
			Model: String,
			NextMOTDate: 0001-01-01,
			NextServiceDate: 0001-01-01
		}
	]
}