POST CreateQuestionnaire
Request Information
URI Parameters
None.
Body Parameters
Collection of TaskWiseQuestions| Name | Description | Type | Additional information |
|---|---|---|---|
| TaskID | integer |
None. |
|
| QuestID | integer |
None. |
|
| QuestionName | string |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"TaskID": 1,
"QuestID": 2,
"QuestionName": "sample string 3"
},
{
"TaskID": 1,
"QuestID": 2,
"QuestionName": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfTaskWiseQuestions xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UrestComplaintWebApi.Models">
<TaskWiseQuestions>
<QuestID>2</QuestID>
<QuestionName>sample string 3</QuestionName>
<TaskID>1</TaskID>
</TaskWiseQuestions>
<TaskWiseQuestions>
<QuestID>2</QuestID>
<QuestionName>sample string 3</QuestionName>
<TaskID>1</TaskID>
</TaskWiseQuestions>
</ArrayOfTaskWiseQuestions>
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.