GET quote/insurer/product/question/{id}

Get especific Question by Code

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

Question

Lluni.Models.Common.Global.Quote.InsurerQuestion
NameDescriptionTypeAdditional information
Id

integer

None.

ProductId

integer

None.

InsurerId

integer

None.

Question

string

Required

InsurerQuestionInternalId

string

Required

ResponseType

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "ProductId": 2,
  "InsurerId": 3,
  "Question": "sample string 4",
  "InsurerQuestionInternalId": "sample string 5",
  "ResponseType": "sample string 6"
}

application/xml, text/xml

Sample:
<InsurerQuestion xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Lluni.Models.Common.Global.Quote">
  <Id>1</Id>
  <InsurerId>3</InsurerId>
  <InsurerQuestionInternalId>sample string 5</InsurerQuestionInternalId>
  <ProductId>2</ProductId>
  <Question>sample string 4</Question>
  <ResponseType>sample string 6</ResponseType>
</InsurerQuestion>