POST api/Insured/InsuredAgents
Insured agents 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": [
"832f6d18-8330-405f-ae53-a2993c31cbf1",
"37a81933-7b0f-4a94-b1d2-f79248e6b632"
]
}
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>832f6d18-8330-405f-ae53-a2993c31cbf1</d2p1:guid>
<d2p1:guid>37a81933-7b0f-4a94-b1d2-f79248e6b632</d2p1:guid>
</InsuredDataBaseId>
</InsuredDataBaseIds>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
List of XRefInsuredAgents against given insured database Ids.
XRefInsuredAgents| Name | Description | Type | Additional information |
|---|---|---|---|
| DatabaseId | globally unique identifier |
None. |
|
| FirstName | string |
None. |
|
| LastName | string |
None. |
|
| Order | integer |
None. |
|
| InsuredDatabaseId | globally unique identifier |
None. |
|
| string |
None. |
||
| ChangeDate | date |
None. |
|
| CreateDate | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"databaseId": "cc94e58a-5f86-4f43-b0da-8ec7496234cd",
"firstName": "sample string 2",
"lastName": "sample string 3",
"order": 4,
"insuredDatabaseId": "940c7999-e5ca-4592-895f-06d7e33927ae",
"email": "sample string 6",
"changeDate": "2026-06-11T01:18:40.7682893-05:00",
"createDate": "2026-06-11T01:18:40.7682893-05:00"
}
application/xml, text/xml
Sample:
<XRefInsuredAgents xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities.NowCertsFulcrum"> <ChangeDate>2026-06-11T01:18:40.7682893-05:00</ChangeDate> <CreateDate>2026-06-11T01:18:40.7682893-05:00</CreateDate> <DatabaseId>cc94e58a-5f86-4f43-b0da-8ec7496234cd</DatabaseId> <Email>sample string 6</Email> <FirstName>sample string 2</FirstName> <InsuredDatabaseId>940c7999-e5ca-4592-895f-06d7e33927ae</InsuredDatabaseId> <LastName>sample string 3</LastName> <Order>4</Order> </XRefInsuredAgents>