POST api/analytics/organizations/{organizationId}/questions
Get the questions available for analysis These can be used as the "output" to key on These can be used to filter on
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| organizationId | globally unique identifier |
Required |
Body Parameters
Collection of globally unique identifierRequest Formats
application/json, text/json
Sample:
[ "96381144-a7ee-4f2d-9285-e871fedc7ed6", "11b0db48-96dd-4f39-b2c6-65e90fbc2fd0" ]
application/xml, text/xml
Sample:
<ArrayOfguid xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <guid>96381144-a7ee-4f2d-9285-e871fedc7ed6</guid> <guid>11b0db48-96dd-4f39-b2c6-65e90fbc2fd0</guid> </ArrayOfguid>
application/x-www-form-urlencoded
Sample:
Sample not available.
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": "a23f86df-e771-42ec-be60-13dbb2d801a7",
"Name": "sample string 2",
"Text": "sample string 3",
"Type": "sample string 4",
"OrderIndex": 5,
"Answers": null
},
{
"Id": "a23f86df-e771-42ec-be60-13dbb2d801a7",
"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>a23f86df-e771-42ec-be60-13dbb2d801a7</Id>
<Name>sample string 2</Name>
<Text>sample string 3</Text>
<Type>sample string 4</Type>
</ReportQuestionDetail>
<ReportQuestionDetail>
<Answers i:nil="true" />
<Id>a23f86df-e771-42ec-be60-13dbb2d801a7</Id>
<Name>sample string 2</Name>
<Text>sample string 3</Text>
<Type>sample string 4</Type>
</ReportQuestionDetail>
</ArrayOfReportQuestionDetail>