GetInternalCashTransferOrders
Filter inputs
Name | Type | Description | Mandatory | Available from version |
---|---|---|---|---|
BrickIds | Guid[] | Â Filter by array of BrickIds. BrickId is the internal id of an InternalCashTransferOrder | Â | 2.27Â |
CreatedDateFrom | DateTime? | When used, both from date and to date should be provided in the request | Â | 2.27 |
CreatedDateTo | DateTime? | Â | 2.27 | |
FromAccountNumbers | string[] | This filter relates to the account numbers where the transfer order is transferring assets from | Â | 2.27 |
FromAccountBrickIds | Guid[] | This filter relates to the BrickIds of the accounts where the transfer order is transferring assets from | Â | 2.27 |
ToAccountNumbers | string[] | This filter relates to the account numbers where the transfer order is transferring assets to | Â | 2.27 |
ToAccountBrickIds | Guid[] | This filter relates to the BrickIds of the accounts where the transfer order is transferring assets to | Â | 2.27 |
FromAmount | decimal? | Filter on the amount of the order, when used, both of the values should be applied | Â | 2.27 |
ToAmount | decimal? | Â | 2.27 | |
Comment | string | A free text comment that can exist on the order | Â | 2.27 |
FromTradeDate | DateTime? | When used, both from date and to date should be provided in the request | Â | 2.27 |
ToTradeDate | DateTime? | Â | 2.27 | |
FromSettlementDate | DateTime? | When used, both from date and to date should be provided in the request | Â | 2.27 |
ToSettlementDate | DateTime? | Â | 2.27 | |
FromValueDate | DateTime? | When used, both from date and to date should be provided in the request | Â | 2.27 |
ToValueDate | DateTime? | Â | 2.27 | |
CurrencyCodes | string[] | The ISO-code of the currency in the order, for example "EUR" | Â | 2.27 |
CashAssetBrickIds | Guid[] | The BrickId of the Cash asset | Â | 2.27 |
OrderStatus | string[] | The status of the orders you want | Â | 2.36 |
OrderNo | String[] | The order number of the orders you want | Â | 2.36 |
Response rows (Array) inherits from EntityBase
Name | Type | Description | Available from version |
---|---|---|---|
BrickId | Guid | The BrickId (unique id) of the order | 2.27 |
CreatedDate | DateTime | The timestamp of when the order was created | 2.27 |
FromAccountNumber | string | The account number where assets are being transferred from | 2.27 |
ToAccountNumber | string | The account number where assets are being transferred to | 2.27 |
FromAccountBrickId | Guid | The BrickId of the account where assets are being transferred from | 2.27 |
ToAccountBrickId | Guid | The BrickId of the account where assets are being transferred to | 2.27 |
Amount | decimal | The amount of the transfer order | 2.27 |
Comment | string | A free text comment that can exist on the order | 2.27 |
TradeDate | DateTime | The trade date used on the transactions related to the order | 2.27 |
SettlementDate | DateTime | The settle date used on the transactions related to the order | 2.27 |
ValueDate | DateTime | The value date used on the transactions related to the order | 2.27 |
CurrencyCode | string | The ISO-code of the currency used in the order | 2.27 |
CashAssetBrickId | Guid | The BrickId of the Cash asset | 2.27 |
OrderStatus | string | The status of the order | 2.36 |
OrderNo | String | The order number of the order | 2.36 |
Code examples
C# - Get internal transfer orders from a BFS instance
request.Credentials = CorrectCredentials();
request.identify = CorrectIdentify();
request.Args = new GetInternalCashTransferOrderArgs
{
FromAccountNumbers = new []{"1234"}
};
request.Fields = new GetInternalCashTransferOrderFields
{
ToAccountBrickId = true,
TradeDate = true,
SettlementDate = true,
ValueDate = true,
FromAccountBrickId = true,
CurrencyCode = true,
Amount = true,
BrickId = true,
CashAssetBrickId = true,
Comment = true,
CreatedDate = true,
CustomFields = true,
FromAccountNumber = true,
ToAccountNumber = true
};
var response = client.GetInternalCashTransferOrders(request);
Blog stream
Create a blog post to share news and announcements with your team and company.
Terms of License
Change Policy
© 2009 - 2024 Huddlestock Technologies AB All rights reserved