GET api/statementapprovals
Get all Statement Approvals
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of StatementApprovalViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
StatementApprovalId |
integer |
None. |
| Code |
Code |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": 1,
"code": "sample string 2"
},
{
"id": 1,
"code": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfStatementApprovalViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.ViewModels">
<StatementApprovalViewModel>
<Code>sample string 2</Code>
<Id>1</Id>
</StatementApprovalViewModel>
<StatementApprovalViewModel>
<Code>sample string 2</Code>
<Id>1</Id>
</StatementApprovalViewModel>
</ArrayOfStatementApprovalViewModel>