GET v1/PolicyACORDForms/{policyId}/AcordSelectorVehicleList?policyDetailsId={policyDetailsId}&lobInternalCode={lobInternalCode}
Get List of Vehicles on Policy and format for ACORD Selector List
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| policyId |
Id of the policy |
string |
Required |
| policyDetailsId |
Id of the policy details |
string |
Required |
| lobInternalCode |
Lob internal code |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
List of Vehicles on Policy and format for ACORD Selector List
Collection of AcordAutoVehicleDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| VehicleID | integer |
None. |
|
| Year | string |
None. |
|
| Make | string |
None. |
|
| Model | string |
None. |
|
| VIN | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"VehicleID": 1,
"Year": "sample string 2",
"Make": "sample string 3",
"Model": "sample string 4",
"VIN": "sample string 5"
},
{
"VehicleID": 1,
"Year": "sample string 2",
"Make": "sample string 3",
"Model": "sample string 4",
"VIN": "sample string 5"
}
]
application/xml, text/xml
Sample:
<ArrayOfAcordAutoVehicleDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QQSolutions.NextGen.ModelLibrary.DataTransferObjects.Policies">
<AcordAutoVehicleDTO>
<Make>sample string 3</Make>
<Model>sample string 4</Model>
<VIN>sample string 5</VIN>
<VehicleID>1</VehicleID>
<Year>sample string 2</Year>
</AcordAutoVehicleDTO>
<AcordAutoVehicleDTO>
<Make>sample string 3</Make>
<Model>sample string 4</Model>
<VIN>sample string 5</VIN>
<VehicleID>1</VehicleID>
<Year>sample string 2</Year>
</AcordAutoVehicleDTO>
</ArrayOfAcordAutoVehicleDTO>