POST api/Insured/InsuredCustomFields

Insured Custom fields list endpoint.

Request Information

URI Parameters

None.

Body Parameters

List of insured database Ids.

InsuredDataBaseIds
NameDescriptionTypeAdditional information
InsuredDataBaseId

Collection of globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "insuredDataBaseId": [
    "f1116d6c-7982-4fc8-a6f3-6a08af6190cc",
    "52778e96-94c1-45be-8b34-def1fab0fab8"
  ]
}

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>f1116d6c-7982-4fc8-a6f3-6a08af6190cc</d2p1:guid>
    <d2p1:guid>52778e96-94c1-45be-8b34-def1fab0fab8</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
NameDescriptionTypeAdditional 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": "edefac3d-6a30-4df8-967c-6dea5b3cb617",
  "order": 2,
  "text": "sample string 3",
  "value": "sample string 4",
  "createDate": "2024-05-07T22:04:15.8074566-05:00",
  "changeDate": "2024-05-07T22:04:15.8074566-05:00",
  "insuredDatabaseId": "418b2411-5642-434e-b353-291fef202873",
  "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>2024-05-07T22:04:15.8074566-05:00</ChangeDate>
  <CreateDate>2024-05-07T22:04:15.8074566-05:00</CreateDate>
  <DatabaseId>edefac3d-6a30-4df8-967c-6dea5b3cb617</DatabaseId>
  <InsuredCommercialName>sample string 11</InsuredCommercialName>
  <InsuredDatabaseId>418b2411-5642-434e-b353-291fef202873</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>