POST api/Insured/InsuredAgencyLocation
Insured agency locations list endpoint.
Request Information
URI Parameters
None.
Body Parameters
List of insured database Ids.
InsuredDataBaseIds| Name | Description | Type | Additional information |
|---|---|---|---|
| InsuredDataBaseId | Collection of globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"insuredDataBaseId": [
"be673ac5-4409-4f4e-9add-d05fee4e169e",
"207f2b89-b0c1-4afb-abcc-211353430598"
]
}
application/xml, text/xml
Sample:
<InsuredDataBaseIds xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities.OData">
<InsuredDataBaseId xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>be673ac5-4409-4f4e-9add-d05fee4e169e</d2p1:guid>
<d2p1:guid>207f2b89-b0c1-4afb-abcc-211353430598</d2p1:guid>
</InsuredDataBaseId>
</InsuredDataBaseIds>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
List of InsuredAgencyLocation against given insured database Ids.
InsuredAgencyLocation| Name | Description | Type | Additional information |
|---|---|---|---|
| DatabaseId | globally unique identifier |
None. |
|
| LocationName | string |
None. |
|
| LocationBusinessName | string |
None. |
|
| InsuredDatabaseId | globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
{
"databaseId": "34bc55fe-0f34-4c27-9130-cc67e7cd1a68",
"locationName": "sample string 2",
"locationBusinessName": "sample string 3",
"insuredDatabaseId": "2eb77158-b5f7-493e-b263-c36b4293ead4"
}
application/xml, text/xml
Sample:
<InsuredAgencyLocation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities.NowCertsFulcrum"> <DatabaseId>34bc55fe-0f34-4c27-9130-cc67e7cd1a68</DatabaseId> <InsuredDatabaseId>2eb77158-b5f7-493e-b263-c36b4293ead4</InsuredDatabaseId> <LocationBusinessName>sample string 3</LocationBusinessName> <LocationName>sample string 2</LocationName> </InsuredAgencyLocation>