Request Information

URI Parameters

NameDescriptionTypeAdditional information
questionId

The base question identifier.

integer

None.

baseConditionId

The rule identifier.

integer

None.

Body Parameters

None.

Response Information

Resource Description

A list of base question rules.

Collection of Pico.BaseQuestionRule
NameDescriptionTypeAdditional information
group

Gets or sets the group.

string

None.

baseQuestion

Gets or sets the base question identifier.

integer

None.

id

Gets or sets the base question rule identifier.

integer

None.

rule

Gets or sets the rule identifier.

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "group": "sample String 1",
    "baseQuestion": "2",
    "id": "3",
    "rule": "4"
  },
  {
    "group": "sample String 1",
    "baseQuestion": "2",
    "id": "3",
    "rule": "4"
  }
]

text/html

Sample:
[{"group":"sample String 1","baseQuestion":"2","id":"3","rule":"4"},{"group":"sample String 1","baseQuestion":"2","id":"3","rule":"4"}]

application/xml, text/xml

Sample:
<ArrayOfBaseQuestionRule xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <BaseQuestionRule>
    <Group>sample String 1</Group>
    <BaseQuestionId>2</BaseQuestionId>
    <BaseQuestionRuleId>3</BaseQuestionRuleId>
    <RuleId>4</RuleId>
  </BaseQuestionRule>
  <BaseQuestionRule>
    <Group>sample String 1</Group>
    <BaseQuestionId>2</BaseQuestionId>
    <BaseQuestionRuleId>3</BaseQuestionRuleId>
    <RuleId>4</RuleId>
  </BaseQuestionRule>
</ArrayOfBaseQuestionRule>