GET v1/Locations/{locationID}/Policies/LinesOfBusiness/{systemLineOfBusinessID}/SystemCoverages
Get the available coverages that can be added to a Line Of Business
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
systemLineOfBusinessID |
System line of business id |
string |
Required |
locationID | string |
None. |
Body Parameters
None.
Response Information
Resource Description
List of coverages
Collection of GenericListItemDTOName | Description | Type | Additional information |
---|---|---|---|
ID | integer |
None. |
|
Name | string |
None. |
|
Code | string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "ID": 1, "Name": "sample string 2", "Code": "sample string 3" }, { "ID": 1, "Name": "sample string 2", "Code": "sample string 3" } ]
application/xml, text/xml
Sample:
<ArrayOfGenericListItemDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QQSolutions.NextGen.ModelLibrary.DataTransferObjects"> <GenericListItemDTO> <Code>sample string 3</Code> <ID>1</ID> <Name>sample string 2</Name> </GenericListItemDTO> <GenericListItemDTO> <Code>sample string 3</Code> <ID>1</ID> <Name>sample string 2</Name> </GenericListItemDTO> </ArrayOfGenericListItemDTO>