GET api/FinancialAccountStatement/{id}?type={type}&enddatetime={enddatetime}
Gets a list of financial account statement.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id |
Account Global Id. |
string |
Required |
type |
List Type. |
string |
Required |
enddatetime |
End DateTime. |
date |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of FinancialAccountStatementName | Description | Type | Additional information |
---|---|---|---|
EntryDate | date |
None. |
|
EntryDescription | string |
None. |
|
EntryAmount | decimal number |
None. |
|
SourceObject | string |
None. |
|
SourceObjectId | integer |
None. |
|
SourceGlobalId | string |
None. |
|
GlobalId | string |
None. |
|
SourceObjectName | string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "EntryDate": "2025-01-16T05:48:51.3461795+00:00", "EntryDescription": "sample string 1", "EntryAmount": 1.0, "SourceObject": "sample string 2", "SourceObjectId": 1, "SourceGlobalId": "sample string 3", "GlobalId": "sample string 4", "SourceObjectName": "sample string 5" }, { "EntryDate": "2025-01-16T05:48:51.3461795+00:00", "EntryDescription": "sample string 1", "EntryAmount": 1.0, "SourceObject": "sample string 2", "SourceObjectId": 1, "SourceGlobalId": "sample string 3", "GlobalId": "sample string 4", "SourceObjectName": "sample string 5" } ]
application/xml, text/xml
Sample:
<ArrayOfFinancialAccountStatement xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CustomersdbWebShared.Models"> <FinancialAccountStatement> <EntryAmount>1</EntryAmount> <EntryDate>2025-01-16T05:48:51.3461795+00:00</EntryDate> <EntryDescription>sample string 1</EntryDescription> <GlobalId>sample string 4</GlobalId> <SourceGlobalId>sample string 3</SourceGlobalId> <SourceObject>sample string 2</SourceObject> <SourceObjectId>1</SourceObjectId> <SourceObjectName>sample string 5</SourceObjectName> </FinancialAccountStatement> <FinancialAccountStatement> <EntryAmount>1</EntryAmount> <EntryDate>2025-01-16T05:48:51.3461795+00:00</EntryDate> <EntryDescription>sample string 1</EntryDescription> <GlobalId>sample string 4</GlobalId> <SourceGlobalId>sample string 3</SourceGlobalId> <SourceObject>sample string 2</SourceObject> <SourceObjectId>1</SourceObjectId> <SourceObjectName>sample string 5</SourceObjectName> </FinancialAccountStatement> </ArrayOfFinancialAccountStatement>