GET api/analytics/organizations/{organizationId}/questions
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| organizationId | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ReportQuestionDetail| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| Text | string |
None. |
|
| Type | string |
None. |
|
| OrderIndex | integer |
None. |
|
| Answers | Collection of ReportAnswerDetail |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": "fe7ab9fe-64ab-4a4a-b37d-e23968f2fc93",
"Name": "sample string 2",
"Text": "sample string 3",
"Type": "sample string 4",
"OrderIndex": 5,
"Answers": null
},
{
"Id": "fe7ab9fe-64ab-4a4a-b37d-e23968f2fc93",
"Name": "sample string 2",
"Text": "sample string 3",
"Type": "sample string 4",
"OrderIndex": 5,
"Answers": null
}
]
application/xml, text/xml
Sample:
<ArrayOfReportQuestionDetail xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/XCapture.DTO">
<ReportQuestionDetail>
<Answers i:nil="true" />
<Id>fe7ab9fe-64ab-4a4a-b37d-e23968f2fc93</Id>
<Name>sample string 2</Name>
<Text>sample string 3</Text>
<Type>sample string 4</Type>
</ReportQuestionDetail>
<ReportQuestionDetail>
<Answers i:nil="true" />
<Id>fe7ab9fe-64ab-4a4a-b37d-e23968f2fc93</Id>
<Name>sample string 2</Name>
<Text>sample string 3</Text>
<Type>sample string 4</Type>
</ReportQuestionDetail>
</ArrayOfReportQuestionDetail>