GET v1/Locations/Policies/SystemLines

Get the available Lines of Business that can be added to a Location

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

List of Lines of Business

Collection of GenericLobDTO
NameDescriptionTypeAdditional information
AcordCode

ACORD code

string

None.

InternalCode

Internal code

string

None.

HasDetails

Signifies whether the Lines of Business supports policy details

boolean

None.

IsPackage

Signifies whether the Lines of Business is for package policies.

boolean

None.

LOBDetailsGroup

Details group

string

None.

ID

Id of item

integer

None.

Name

Name of item

string

None.

Code

Code of item

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "AcordCode": "sample string 1",
    "InternalCode": "sample string 2",
    "HasDetails": true,
    "IsPackage": true,
    "LOBDetailsGroup": "sample string 5",
    "ID": 6,
    "Name": "sample string 7",
    "Code": "sample string 8"
  },
  {
    "AcordCode": "sample string 1",
    "InternalCode": "sample string 2",
    "HasDetails": true,
    "IsPackage": true,
    "LOBDetailsGroup": "sample string 5",
    "ID": 6,
    "Name": "sample string 7",
    "Code": "sample string 8"
  }
]

application/xml, text/xml

Sample:
<ArrayOfGenericLobDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QQSolutions.NextGen.ModelLibrary.DataTransferObjects.Locations">
  <GenericLobDTO>
    <Code xmlns="http://schemas.datacontract.org/2004/07/QQSolutions.NextGen.ModelLibrary.DataTransferObjects">sample string 8</Code>
    <ID xmlns="http://schemas.datacontract.org/2004/07/QQSolutions.NextGen.ModelLibrary.DataTransferObjects">6</ID>
    <Name xmlns="http://schemas.datacontract.org/2004/07/QQSolutions.NextGen.ModelLibrary.DataTransferObjects">sample string 7</Name>
    <AcordCode>sample string 1</AcordCode>
    <HasDetails>true</HasDetails>
    <InternalCode>sample string 2</InternalCode>
    <IsPackage>true</IsPackage>
    <LOBDetailsGroup>sample string 5</LOBDetailsGroup>
  </GenericLobDTO>
  <GenericLobDTO>
    <Code xmlns="http://schemas.datacontract.org/2004/07/QQSolutions.NextGen.ModelLibrary.DataTransferObjects">sample string 8</Code>
    <ID xmlns="http://schemas.datacontract.org/2004/07/QQSolutions.NextGen.ModelLibrary.DataTransferObjects">6</ID>
    <Name xmlns="http://schemas.datacontract.org/2004/07/QQSolutions.NextGen.ModelLibrary.DataTransferObjects">sample string 7</Name>
    <AcordCode>sample string 1</AcordCode>
    <HasDetails>true</HasDetails>
    <InternalCode>sample string 2</InternalCode>
    <IsPackage>true</IsPackage>
    <LOBDetailsGroup>sample string 5</LOBDetailsGroup>
  </GenericLobDTO>
</ArrayOfGenericLobDTO>