POST api/QuoteRequestExternalImportWithProspect
Insert insured and quote request
Request Information
URI Parameters
None.
Body Parameters
QuoteRequestExternalImportModel| Name | Description | Type | Additional information |
|---|---|---|---|
| AgencyId | globally unique identifier |
None. |
|
| QuoteApplicationName | string |
None. |
|
| Fields_OrderBy | FieldsOrderBy |
None. |
|
| Fields | Collection of KeyValueTypeJson |
None. |
|
| CreateDate | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"agencyId": "e59ac62c-4630-4769-ac56-28d521d4289e",
"quoteApplicationName": "sample string 1",
"fields_OrderBy": 0,
"fields": [
{
"propertyName": "sample string 1",
"displayName": "sample string 2",
"value": {},
"type": 0,
"order": 4
},
{
"propertyName": "sample string 1",
"displayName": "sample string 2",
"value": {},
"type": 0,
"order": 4
}
],
"createDate": "2025-10-28T02:28:18.4242359-05:00"
}
application/xml, text/xml
Sample:
<QuoteRequestExternalImportModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities.ImportJsonModels">
<AgencyId>e59ac62c-4630-4769-ac56-28d521d4289e</AgencyId>
<CreateDate>2025-10-28T02:28:18.4242359-05:00</CreateDate>
<Fields>
<KeyValueTypeJson>
<DisplayName>sample string 2</DisplayName>
<Order>4</Order>
<PropertyName>sample string 1</PropertyName>
<Type>Text</Type>
<Value />
</KeyValueTypeJson>
<KeyValueTypeJson>
<DisplayName>sample string 2</DisplayName>
<Order>4</Order>
<PropertyName>sample string 1</PropertyName>
<Type>Text</Type>
<Value />
</KeyValueTypeJson>
</Fields>
<Fields_OrderBy>FieldOrderAndPropertyName</Fields_OrderBy>
<QuoteApplicationName>sample string 1</QuoteApplicationName>
</QuoteRequestExternalImportModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
stringResponse Formats
application/json, text/json
Sample:
"sample string 1"
application/xml, text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>