POST v1/Policies/Details/InlandMarine/GeneralInfo

Upsert the General Info Section data for Inland Marine type policies

Request Information

URI Parameters

None.

Body Parameters

General info

PolicyDetailsInlandMarineGeneralInfoDTO
NameDescriptionTypeAdditional information
PolicyDetailsID

integer

None.

IsEquipmentRented

boolean

None.

EquipRentedExplain

string

None.

IsEquipNotListed

boolean

None.

EquipNotListedExplain

string

None.

IsPropertyUsedUnderground

boolean

None.

PropertyUsedUndergroundExplain

string

None.

IsWorkDoneAfloat

boolean

None.

IsWorkDownAfloatExplain

string

None.

Request Formats

application/json, text/json

Sample:
{
  "PolicyDetailsID": 1,
  "IsEquipmentRented": true,
  "EquipRentedExplain": "sample string 2",
  "IsEquipNotListed": true,
  "EquipNotListedExplain": "sample string 3",
  "IsPropertyUsedUnderground": true,
  "PropertyUsedUndergroundExplain": "sample string 4",
  "IsWorkDoneAfloat": true,
  "IsWorkDownAfloatExplain": "sample string 5"
}

application/xml, text/xml

Sample:
<PolicyDetailsInlandMarineGeneralInfoDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QQSolutions.NextGen.ModelLibrary.DataTransferObjects.Policies">
  <EquipNotListedExplain>sample string 3</EquipNotListedExplain>
  <EquipRentedExplain>sample string 2</EquipRentedExplain>
  <IsEquipNotListed>true</IsEquipNotListed>
  <IsEquipmentRented>true</IsEquipmentRented>
  <IsPropertyUsedUnderground>true</IsPropertyUsedUnderground>
  <IsWorkDoneAfloat>true</IsWorkDoneAfloat>
  <IsWorkDownAfloatExplain>sample string 5</IsWorkDownAfloatExplain>
  <PolicyDetailsID>1</PolicyDetailsID>
  <PropertyUsedUndergroundExplain>sample string 4</PropertyUsedUndergroundExplain>
</PolicyDetailsInlandMarineGeneralInfoDTO>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'PolicyDetailsInlandMarineGeneralInfoDTO'.

Response Information

Resource Description

Upsertion result

ActionResultDTO
NameDescriptionTypeAdditional information
IsSuccess

boolean

None.

ErrorCode

string

None.

ErrorMessage

string

None.

InfoMessage

string

None.

Response Formats

application/json, text/json

Sample:
{
  "IsSuccess": true,
  "ErrorCode": "sample string 2",
  "ErrorMessage": "sample string 3",
  "InfoMessage": "sample string 4"
}

application/xml, text/xml

Sample:
<ActionResultDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QQSolutions.NextGen.ModelLibrary.DataTransferObjects">
  <ErrorCode>sample string 2</ErrorCode>
  <ErrorMessage>sample string 3</ErrorMessage>
  <InfoMessage>sample string 4</InfoMessage>
  <IsSuccess>true</IsSuccess>
</ActionResultDTO>