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": [
"0021afac-2d57-41e0-92c7-979fe65e5f20",
"d03aa99f-ac89-4b67-9d65-3f807c867f43"
]
}
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>0021afac-2d57-41e0-92c7-979fe65e5f20</d2p1:guid>
<d2p1:guid>d03aa99f-ac89-4b67-9d65-3f807c867f43</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": "1d42cd36-d2d2-47ff-97ce-86b5e875dab8",
"order": 2,
"text": "sample string 3",
"value": "sample string 4",
"createDate": "2025-12-27T10:32:46.4863641-06:00",
"changeDate": "2025-12-27T10:32:46.4863641-06:00",
"insuredDatabaseId": "b92da941-97ad-44aa-9c56-455036890b84",
"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-12-27T10:32:46.4863641-06:00</ChangeDate> <CreateDate>2025-12-27T10:32:46.4863641-06:00</CreateDate> <DatabaseId>1d42cd36-d2d2-47ff-97ce-86b5e875dab8</DatabaseId> <InsuredCommercialName>sample string 11</InsuredCommercialName> <InsuredDatabaseId>b92da941-97ad-44aa-9c56-455036890b84</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>