POST Cuentas/GetAccountMovements
Request Information
URI Parameters
None.
Body Parameters
GetAccountMovementsInputName | Description | Type | Additional information |
---|---|---|---|
ProductBankIdentifier | string |
None. |
|
DateFromFilter | date |
None. |
|
DateToFilter | date |
None. |
|
Paging | Paging |
None. |
|
ChannelId | integer |
None. |
|
TenantId | string |
None. |
|
UserLanguage | integer |
None. |
|
UserName | string |
None. |
|
IpAddress | string |
None. |
|
Location | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "ProductBankIdentifier": "sample string 1", "DateFromFilter": "2024-12-22T01:49:39.6548031-05:00", "DateToFilter": "2024-12-22T01:49:39.6548031-05:00", "Paging": { "OrderByField": "sample string 1", "PageStartIndex": 2, "PageSize": 3 }, "ChannelId": 4, "TenantId": "sample string 5", "UserLanguage": 6, "UserName": "sample string 7", "IpAddress": "sample string 8", "Location": "sample string 9" }
application/xml, text/xml
Sample:
<GetAccountMovementsInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FBSBankingly.Models.Input"> <ChannelId>4</ChannelId> <IpAddress>sample string 8</IpAddress> <Location>sample string 9</Location> <TenantId>sample string 5</TenantId> <UserLanguage>6</UserLanguage> <UserName>sample string 7</UserName> <DateFromFilter>2024-12-22T01:49:39.6548031-05:00</DateFromFilter> <DateToFilter>2024-12-22T01:49:39.6548031-05:00</DateToFilter> <Paging> <OrderByField>sample string 1</OrderByField> <PageSize>3</PageSize> <PageStartIndex>2</PageStartIndex> </Paging> <ProductBankIdentifier>sample string 1</ProductBankIdentifier> </GetAccountMovementsInput>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
GetAccountMovementsResultName | Description | Type | Additional information |
---|---|---|---|
AccountMovements | Collection of AccountMovement |
None. |
|
AccountMovementsCount | integer |
None. |
Response Formats
application/json, text/json
Sample:
{ "AccountMovements": [ { "MovementId": 1, "AccountBankIdentifier": "sample string 2", "MovementDate": "2024-12-22T01:49:39.6693502-05:00", "Description": "sample string 4", "Amount": 5.0, "isDebit": true, "Balance": 7.0, "MovementTypeId": 8, "TypeDescription": "sample string 9", "CheckId": "sample string 10", "VoucherId": "sample string 11" }, { "MovementId": 1, "AccountBankIdentifier": "sample string 2", "MovementDate": "2024-12-22T01:49:39.6693502-05:00", "Description": "sample string 4", "Amount": 5.0, "isDebit": true, "Balance": 7.0, "MovementTypeId": 8, "TypeDescription": "sample string 9", "CheckId": "sample string 10", "VoucherId": "sample string 11" } ], "AccountMovementsCount": 1 }
application/xml, text/xml
Sample:
<GetAccountMovementsResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FBSBankingly.Models.Result"> <AccountMovements> <AccountMovement> <AccountBankIdentifier>sample string 2</AccountBankIdentifier> <Amount>5</Amount> <Balance>7</Balance> <CheckId>sample string 10</CheckId> <Description>sample string 4</Description> <MovementDate>2024-12-22T01:49:39.6693502-05:00</MovementDate> <MovementId>1</MovementId> <MovementTypeId>8</MovementTypeId> <TypeDescription>sample string 9</TypeDescription> <VoucherId>sample string 11</VoucherId> <isDebit>true</isDebit> </AccountMovement> <AccountMovement> <AccountBankIdentifier>sample string 2</AccountBankIdentifier> <Amount>5</Amount> <Balance>7</Balance> <CheckId>sample string 10</CheckId> <Description>sample string 4</Description> <MovementDate>2024-12-22T01:49:39.6693502-05:00</MovementDate> <MovementId>1</MovementId> <MovementTypeId>8</MovementTypeId> <TypeDescription>sample string 9</TypeDescription> <VoucherId>sample string 11</VoucherId> <isDebit>true</isDebit> </AccountMovement> </AccountMovements> <AccountMovementsCount>1</AccountMovementsCount> </GetAccountMovementsResult>