GET api/SocialDriver/GetVehicleOrigins

Get the possible vehicle origins

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

ViewVehicleLocationResponse

ViewVehicleOriginsResponse
NameDescriptionTypeAdditional information
VehicleOrigins

A collection of vehicle origins

Collection of VehicleOriginDescription

None.

Response Formats

application/json, text/json

Sample:
{
  "VehicleOrigins": [
    {
      "Id": 1,
      "Country": "sample string 2"
    },
    {
      "Id": 1,
      "Country": "sample string 2"
    }
  ]
}

application/xml, text/xml

Sample:
<ViewVehicleOriginsResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <VehicleOrigins>
    <VehicleOriginDescription>
      <Id>1</Id>
      <Country>sample string 2</Country>
    </VehicleOriginDescription>
    <VehicleOriginDescription>
      <Id>1</Id>
      <Country>sample string 2</Country>
    </VehicleOriginDescription>
  </VehicleOrigins>
</ViewVehicleOriginsResponse>