Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| questionId |
The question identifier. |
integer |
None. |
| baseConditionId |
The base condition identifier. |
integer |
None. |
Body Parameters
None.
Response Information
Resource Description
A list of base questions.
Collection of Pico.BaseQuestion| Name | Description | Type | Additional information |
|---|---|---|---|
| order |
Gets or sets the order. |
integer |
None. |
| baseCondition |
Gets or sets the base condition identifier. |
integer |
None. |
| id |
Gets or sets the base question identifier. |
integer |
None. |
| question |
Gets or sets the question identifier. |
integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"order": 1,
"baseCondition": "2",
"id": "3",
"question": "4"
},
{
"order": 1,
"baseCondition": "2",
"id": "3",
"question": "4"
}
]
text/html
Sample:
[{"order":1,"baseCondition":"2","id":"3","question":"4"},{"order":1,"baseCondition":"2","id":"3","question":"4"}]
application/xml, text/xml
Sample:
<ArrayOfBaseQuestion xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<BaseQuestion>
<Order>1</Order>
<BaseConditionId>2</BaseConditionId>
<BaseQuestionId>3</BaseQuestionId>
<QuestionId>4</QuestionId>
</BaseQuestion>
<BaseQuestion>
<Order>1</Order>
<BaseConditionId>2</BaseConditionId>
<BaseQuestionId>3</BaseQuestionId>
<QuestionId>4</QuestionId>
</BaseQuestion>
</ArrayOfBaseQuestion>