Mercedes.Agency.Orchestration.API

<back to all web services

GetMotabilityVehiclesRequest

Vehicle
Requires Authentication
The following routes are available for this service:
GET/v1/vehicle/MotabilityVehiclesGet motability eligible vehicles
import Foundation
import ServiceStack

public class GetMotabilityVehiclesRequest : Codable
{
    required public init(){}
}

public class MotabilityStockResponse<T : Codable> : Codable
{
    public var totalVehicles:Int
    public var vehicles:[MotabilityVehicle] = []

    required public init(){}
}

public class MotabilityVehicle : IPackages, IMotabilityFilterFields, Codable
{
    public var commissionNumber:String
    public var vin:String
    public var vtn:String
    public var Description:String
    public var model:String
    public var bM7NST:String
    public var modelYearCode:String
    public var halfModelYearCode:String
    public var fullModelYearCode:String
    public var fuel:String
    public var primaryPaintColourCode:String
    public var colour:String
    public var primaryUpholsteryCode:String
    public var upholstery:String
    public var packages:[Package]
    public var account:String
    public var location:String
    public var isDisplayStock:Bool
    public var displayStockAgent:String
    public var isSellable:Bool

    required public init(){}
}

public class Package : Codable
{
    public var id:Int
    public var Description:String

    required public init(){}
}


Swift GetMotabilityVehiclesRequest DTOs

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

HTTP + OTHER

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

GET /v1/vehicle/MotabilityVehicles HTTP/1.1 
Host: prod-api-agency-orch-mb-dhc.rapp-customers.co.uk 
Accept: text/jsonl
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length

{"TotalVehicles":0,"Vehicles":[{"CommissionNumber":"String","Vin":"String","Vtn":"String","Description":"String","Model":"String","BM7NST":"String","ModelYearCode":"String","HalfModelYearCode":"String","FullModelYearCode":"String.String","Fuel":"String","PrimaryPaintColourCode":"String","Colour":"String","PrimaryUpholsteryCode":"String","Upholstery":"String","Account":"String","Location":"String","IsDisplayStock":false,"DisplayStockAgent":"String","IsSellable":false}]}