POST Cuentas/GetAccountLast5Movements
Request Information
URI Parameters
None.
Body Parameters
GetAccountLast5MovementsInputName | Description | Type | Additional information |
---|---|---|---|
ProductBankIdentifier | string |
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", "ChannelId": 2, "TenantId": "sample string 3", "UserLanguage": 4, "UserName": "sample string 5", "IpAddress": "sample string 6", "Location": "sample string 7" }
application/xml, text/xml
Sample:
<GetAccountLast5MovementsInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FBSBankingly.Models.Input"> <ChannelId>2</ChannelId> <IpAddress>sample string 6</IpAddress> <Location>sample string 7</Location> <TenantId>sample string 3</TenantId> <UserLanguage>4</UserLanguage> <UserName>sample string 5</UserName> <ProductBankIdentifier>sample string 1</ProductBankIdentifier> </GetAccountLast5MovementsInput>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
GetAccountLast5MovementsResultName | 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:53:59.7108246-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:53:59.7108246-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:
<GetAccountLast5MovementsResult 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:53:59.7108246-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:53:59.7108246-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> </GetAccountLast5MovementsResult>