POST api/Insured/InsuredAgents
Insured agents list endpoint.
Request Information
URI Parameters
None.
Body Parameters
List of insured database Ids.
InsuredDataBaseIdsName | Description | Type | Additional information |
---|---|---|---|
InsuredDataBaseId | Collection of globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{ "insuredDataBaseId": [ "a978f5ac-51f4-41a7-b935-5b9f81fc6db4", "85da4459-1b44-495b-bdb3-c0425b98bf6a" ] }
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>a978f5ac-51f4-41a7-b935-5b9f81fc6db4</d2p1:guid> <d2p1:guid>85da4459-1b44-495b-bdb3-c0425b98bf6a</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.
XRefInsuredAgentsName | Description | Type | Additional information |
---|---|---|---|
DatabaseId | globally unique identifier |
None. |
|
FirstName | string |
None. |
|
LastName | string |
None. |
|
Order | integer |
None. |
|
InsuredDatabaseId | globally unique identifier |
None. |
|
ChangeDate | date |
None. |
|
CreateDate | date |
None. |
Response Formats
application/json, text/json
Sample:
{ "databaseId": "56919608-e62a-4678-8908-d9468f6d7a03", "firstName": "sample string 2", "lastName": "sample string 3", "order": 4, "insuredDatabaseId": "d98dd074-ec34-40c5-83ff-9ca2677df115", "changeDate": "2024-12-10T08:52:19.6225425-06:00", "createDate": "2024-12-10T08:52:19.6225425-06: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>2024-12-10T08:52:19.6225425-06:00</ChangeDate> <CreateDate>2024-12-10T08:52:19.6225425-06:00</CreateDate> <DatabaseId>56919608-e62a-4678-8908-d9468f6d7a03</DatabaseId> <FirstName>sample string 2</FirstName> <InsuredDatabaseId>d98dd074-ec34-40c5-83ff-9ca2677df115</InsuredDatabaseId> <LastName>sample string 3</LastName> <Order>4</Order> </XRefInsuredAgents>