PUT api/healthquestion/{proposalNo}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| proposalNo | string |
Required |
Body Parameters
Collection of QuestionAnswerModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ProposalNo | string |
None. |
|
| QCode | string |
None. |
|
| QAns | integer |
None. |
|
| QDetails | string |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"ProposalNo": "sample string 1",
"QCode": "sample string 2",
"QAns": 3,
"QDetails": "sample string 4"
},
{
"ProposalNo": "sample string 1",
"QCode": "sample string 2",
"QAns": 3,
"QDetails": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfQuestionAnswerModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bancassurance_API.Models">
<QuestionAnswerModel>
<ProposalNo>sample string 1</ProposalNo>
<QAns>3</QAns>
<QCode>sample string 2</QCode>
<QDetails>sample string 4</QDetails>
</QuestionAnswerModel>
<QuestionAnswerModel>
<ProposalNo>sample string 1</ProposalNo>
<QAns>3</QAns>
<QCode>sample string 2</QCode>
<QDetails>sample string 4</QDetails>
</QuestionAnswerModel>
</ArrayOfQuestionAnswerModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.