GET quote/insurer/{insurerId}/product/{productId}/question

Get especific InsurerQuestion by Code

Request Information

URI Parameters

NameDescriptionTypeAdditional information
insurerId

integer

Required

productId

integer

Required

Body Parameters

None.

Response Information

Resource Description

InsurerQuestion

Collection of 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"
  },
  {
    "Id": 1,
    "ProductId": 2,
    "InsurerId": 3,
    "Question": "sample string 4",
    "InsurerQuestionInternalId": "sample string 5",
    "ResponseType": "sample string 6"
  }
]

application/xml, text/xml

Sample:
<ArrayOfInsurerQuestion xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Lluni.Models.Common.Global.Quote">
  <InsurerQuestion>
    <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>
  <InsurerQuestion>
    <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>
</ArrayOfInsurerQuestion>