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 9 Current »

Filter inputs

NameTypeDescriptionMandatoryAvailable from version
BrickIdGuid Not if Orderno is sent2.02.20160429
SettlementDateDateTimeThe settlement date to be used on the settlement transactions that are going to be createdYes2.02.20160429
ValueDateDateTimeThe value date to be used on the transactions that are going to be createdYes2.02.20160429
OrderNostringOrdernumber of the BatchOrderNot if BrickId is sent2.02.20160429

Response rows

NameTypeDescription
Messagestring"OK" or errormessage

Code examples

C# - DepositCashBatchOrder_BatchFill
//Use the DepositCashBatchOrder_BatchFill method
var client = new BFSServiceReference.bfsapiSoapClient();

var credentials = new BFSServiceReference.Credentials()
{
    UserName = bfsusername, //Username of administrative user in your instance of BFS
    Password = bfspassword, //Password of the administrative user in your instance of BFS
};

var target = client.DepositCashBatchOrder_BatchFill(new BFSServiceReference.DepositCashBatchOrder_BatchFillRequest()
{
    Credentials = credentials,

    identify = bfsidentifier, //Identifier is a unique token for your instance of BFS 

    WorkflowTriggerDataEntity = new DepositCashBatchOrder_BatchFill()
    {
        BrickId = new Guid("3b3e95a9-3193-467c-9bc4-0ab4a842a46b"),
        SettlementDate = TimeZoneInfo.ConvertTimeToUtc(DateTime.Parse("2016-04-25")),
        ValueDate = TimeZoneInfo.ConvertTimeToUtc(DateTime.Parse("2016-04-25")),
    },

});

Console.WriteLine(target.Message);

 

Blog stream

Create a blog post to share news and announcements with your team and company.

  • No labels