Skip to end of metadata
Go to start of metadata
You are viewing an old version of this page. View the current version.
Compare with Current
View Page History
« Previous
Version 2
Next »
Name | Type | Description | Mandatory | Available from version |
---|
BrickIds | Guid[] | | | |
ExecutionInterfaceSettings | Guid[] | | | |
PhysicalDeliveryIndicator | bool | | | |
FundInstructionNos | string[] | | | |
StatusKeys | string[] | | | |
ExternalFundBatchOrders | string[] | | | |
Instruments | Guid[] | | | |
RequestedNAVCurrencys | Guid[] | | | |
RequestedSettlementCurrencys | Guid[] | | | |
Response rows (Array) inherits from EntityBase
Name | Type | Description | Available from version |
---|
BrickId | Guid | | |
ExecutionInterfaceSetting | Guid | | |
PhysicalDeliveryIndicator | bool | | |
FundInstructionNo | string | | |
StatusKey | string | | |
ExternalFundBatchOrder | Guid | | |
Instrument | Guid | | |
InstructionTypeKey | string | | |
RequestedNAVCurrency | Guid | | |
RequestedSettlementCurrency | Guid | | |
CashAmount | decimal | | |
Code examples
public static void GetFundInstructions()
{
var binding = new BasicHttpBinding();
binding.MaxReceivedMessageSize = Int32.MaxValue;
var target = new bfsapi.bfsapiSoapClient(binding, new EndpointAddress("http://localhost:20010/bfsapi.asmx"));
var req = new bfsapi.GetFundInstructionRequest();
req.Credentials = new bfsapi.Credentials
{
UserName = "user",
Password = "password"
};
req.identify = "Identifystring";
req.Args = new bfsapi.GetFundInstructionArgs
{
FundInstructionNos = new[] { "100119", "100052" }
};
req.Fields = new bfsapi.GetFundInstructionFields()
{
CashAmount =true,
ExternalFundBatchOrder =true,
InstructionTypeKey = true,
FundInstructionNo = true
};
var resp = target.GetFundInstructions(req);
}