SubscriptionOrder_Process

Inputs

NameTypeDescriptionMandatoryAvailable from version
OrderNostringOrderNo of subscription order to be processed True 
ReserveAssetsboolIf assets should be reserved True

Outputs

NameTypeDescriptionAvailable from version
Messagestring"OK" or errormessage
TradeOrderBrickIdGuidThe Id of the resulting TradeOrder.2.30
TradeOrdeOrderNostringThe OrderNo of the resulting TradeOrder.2.30

Code examples

C# - Process Subscription Order in a BFS instance
 public static void ProcessSubscriptionOrder()
        {
            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.SubscriptionOrder_ProcessRequest()
            {

                Credentials = new bfsapi.Credentials
                {
                    UserName = "apiuser",
                    Password = "apiuser"
                },
                identify = "adsfasdfasdf"
            };

            req.WorkflowTriggerDataEntity=new SubscriptionOrder_Process
            {
                OrderNo = "67",
                ReserveAssets = true
            };

            var resp = target.SubscriptionOrder_Process(req);
            
        }


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