POST api/Insured/InsuredCustomFields
Insured Custom fields 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": [
"a7f10b89-33c7-410f-bdd5-629ae987a157",
"0e45d9e1-2f1f-4b33-bd1e-7b41de8ae6db"
]
}
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>a7f10b89-33c7-410f-bdd5-629ae987a157</d2p1:guid>
<d2p1:guid>0e45d9e1-2f1f-4b33-bd1e-7b41de8ae6db</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.
InsuredCustomField| Name | 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": "fe89da92-4f9d-45fd-b728-44a9838d4342",
"order": 2,
"text": "sample string 3",
"value": "sample string 4",
"createDate": "2026-02-23T13:58:06.1681897-06:00",
"changeDate": "2026-02-23T13:58:06.1681897-06:00",
"insuredDatabaseId": "2f2a1c1b-958d-4ef7-9b4c-d4ccfa8efe2c",
"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>2026-02-23T13:58:06.1681897-06:00</ChangeDate> <CreateDate>2026-02-23T13:58:06.1681897-06:00</CreateDate> <DatabaseId>fe89da92-4f9d-45fd-b728-44a9838d4342</DatabaseId> <InsuredCommercialName>sample string 11</InsuredCommercialName> <InsuredDatabaseId>2f2a1c1b-958d-4ef7-9b4c-d4ccfa8efe2c</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>