POST api/Insured/InsuredCustomFields
Insured Custom fields 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": [ "9f559c09-84c1-4012-8fae-87523a9aa82e", "9e0279f8-f2a2-45e4-b2a3-f3c507de3b9e" ] }
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>9f559c09-84c1-4012-8fae-87523a9aa82e</d2p1:guid> <d2p1:guid>9e0279f8-f2a2-45e4-b2a3-f3c507de3b9e</d2p1:guid> </InsuredDataBaseId> </InsuredDataBaseIds>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
List of InsuredCustomField list against given insured database Ids.
InsuredCustomFieldName | Description | Type | Additional information |
---|---|---|---|
DatabaseId | globally unique identifier |
None. |
|
Order | integer |
None. |
|
Text | string |
None. |
|
Value | string |
None. |
|
CreateDate | date |
None. |
|
ChangeDate | date |
None. |
|
InsuredDatabaseId | globally unique identifier |
None. |
|
InsuredEmail | string |
None. |
|
InsuredFirstName | string |
None. |
|
InsuredLastName | string |
None. |
|
InsuredCommercialName | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "databaseId": "1deedb21-01ad-4940-a1cd-2971271343d4", "order": 2, "text": "sample string 3", "value": "sample string 4", "createDate": "2025-08-31T01:39:57.0451452-05:00", "changeDate": "2025-08-31T01:39:57.0451452-05:00", "insuredDatabaseId": "2943f909-c47a-49f3-bcbf-1ece9581c433", "insuredEmail": "sample string 8", "insuredFirstName": "sample string 9", "insuredLastName": "sample string 10", "insuredCommercialName": "sample string 11" }
application/xml, text/xml
Sample:
<InsuredCustomField xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities.NowCertsFulcrum"> <ChangeDate>2025-08-31T01:39:57.0451452-05:00</ChangeDate> <CreateDate>2025-08-31T01:39:57.0451452-05:00</CreateDate> <DatabaseId>1deedb21-01ad-4940-a1cd-2971271343d4</DatabaseId> <InsuredCommercialName>sample string 11</InsuredCommercialName> <InsuredDatabaseId>2943f909-c47a-49f3-bcbf-1ece9581c433</InsuredDatabaseId> <InsuredEmail>sample string 8</InsuredEmail> <InsuredFirstName>sample string 9</InsuredFirstName> <InsuredLastName>sample string 10</InsuredLastName> <Order>2</Order> <Text>sample string 3</Text> <Value>sample string 4</Value> </InsuredCustomField>