SubscriptionOrder_Process
Inputs
Name | Type | Description | Mandatory | Available from version |
|---|---|---|---|---|
OrderNo | string | OrderNo of subscription order to be processed | True | |
ReserveAssets | bool | If assets should be reserved | True |
Outputs
Name | Type | Description | Available from version |
|---|---|---|---|
Message | string | "OK" or errormessage | |
TradeOrderBrickId | Guid | The Id of the resulting TradeOrder. | 2.30 |
TradeOrdeOrderNo | string | The 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 - 2026 Done Technologies AB All rights reserved