PUT v1/Quotes/Issue?QuoteNumber={QuoteNumber}

Issue Policy from Quote

Request Information

URI Parameters

NameDescriptionTypeAdditional information
QuoteNumber

quote number to convert

string

Required

Body Parameters

None.

Response Information

Resource Description

SimplePolicyResponseDTO
NameDescriptionTypeAdditional information
PolicyId

integer

None.

ProductId

integer

None.

PolicyNumber

string

None.

UnderlyingPolicyNumber

string

None.

Premium

decimal number

None.

WarningMessages

List of warning messages encountered while servicing request

Collection of string

None.

Response Formats

application/json, text/json

Sample:
{
  "PolicyId": 1,
  "ProductId": 1,
  "PolicyNumber": "sample string 2",
  "UnderlyingPolicyNumber": "sample string 3",
  "Premium": 4.0
}

application/xml, text/xml

Sample:
<SimplePolicyResponseDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GCApi.Models.Outbound">
  <Id>5</Id>
  <PolicyId>1</PolicyId>
  <PolicyNumber>sample string 2</PolicyNumber>
  <Premium>4</Premium>
  <ProductId>1</ProductId>
  <UnderlyingPolicyNumber>sample string 3</UnderlyingPolicyNumber>
</SimplePolicyResponseDTO>