DELETE api/questions/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
StateQuestionDetail| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| StateId | globally unique identifier |
None. |
|
| StateSectionId | globally unique identifier |
None. |
|
| QuestionId | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| Text | string |
None. |
|
| Type | string |
None. |
|
| OrderIndex | integer |
None. |
|
| Choices | Collection of ChoiceSimple |
None. |
|
| ParentQuestionId | globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "0c7f6419-1708-486f-9c5c-d8a3f6285866",
"StateId": "1488329d-f9dd-4fa2-8202-f4ecec486eb4",
"StateSectionId": "0858920b-cb0a-4d3d-9c42-4f25de5a9569",
"QuestionId": "427ced3d-98fe-4815-88c3-4319a08031e7",
"Name": "sample string 5",
"Text": "sample string 6",
"Type": "sample string 7",
"OrderIndex": 8,
"Choices": [
{
"Id": "5ab96c3b-7330-403f-a1b4-fa35e75c613f",
"Text": "sample string 2",
"OrderIndex": 3
},
{
"Id": "5ab96c3b-7330-403f-a1b4-fa35e75c613f",
"Text": "sample string 2",
"OrderIndex": 3
}
],
"ParentQuestionId": "a7603a04-3688-4302-91ef-e96893fa6073"
}
application/xml, text/xml
Sample:
<StateQuestionDetail xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Admin.DTO">
<Choices>
<ChoiceSimple>
<Id>5ab96c3b-7330-403f-a1b4-fa35e75c613f</Id>
<OrderIndex>3</OrderIndex>
<Text>sample string 2</Text>
</ChoiceSimple>
<ChoiceSimple>
<Id>5ab96c3b-7330-403f-a1b4-fa35e75c613f</Id>
<OrderIndex>3</OrderIndex>
<Text>sample string 2</Text>
</ChoiceSimple>
</Choices>
<Id>0c7f6419-1708-486f-9c5c-d8a3f6285866</Id>
<Name>sample string 5</Name>
<OrderIndex>8</OrderIndex>
<ParentQuestionId>a7603a04-3688-4302-91ef-e96893fa6073</ParentQuestionId>
<QuestionId>427ced3d-98fe-4815-88c3-4319a08031e7</QuestionId>
<StateId>1488329d-f9dd-4fa2-8202-f4ecec486eb4</StateId>
<StateSectionId>0858920b-cb0a-4d3d-9c42-4f25de5a9569</StateSectionId>
<Text>sample string 6</Text>
<Type>sample string 7</Type>
</StateQuestionDetail>