GET api/Application?decisionIdPath={decisionIdPath}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| decisionIdPath | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ReportSection| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| SectionText | string |
None. |
|
| IsTableContent | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"SectionText": "sample string 2",
"IsTableContent": true
},
{
"Id": 1,
"SectionText": "sample string 2",
"IsTableContent": true
}
]
text/html
Sample:
[{"Id":1,"SectionText":"sample string 2","IsTableContent":true},{"Id":1,"SectionText":"sample string 2","IsTableContent":true}]
application/xml, text/xml
Sample:
<ArrayOfReportSection xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CPSC.ROBOT.Entities">
<ReportSection>
<Id>1</Id>
<IsTableContent>true</IsTableContent>
<SectionText>sample string 2</SectionText>
</ReportSection>
<ReportSection>
<Id>1</Id>
<IsTableContent>true</IsTableContent>
<SectionText>sample string 2</SectionText>
</ReportSection>
</ArrayOfReportSection>