SubscriptionOrder_Cancel
Inputs
Name | Type | Description | Mandatory | Available from version |
|---|---|---|---|---|
OrderNo | string | OrderNo of subscription order to be processed | True |
|
Outputs
Name | Type | Description | Available from version |
|---|---|---|---|
Message | string | "OK" or errormessage |
|
Code examples
C# - Cancel a Subscription Order in a BFS instance
public static void CancelSubscriptionOrder()
{
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_CancelRequest()
{
Credentials = new bfsapi.Credentials
{
UserName = "apiuser",
Password = "apiuser"
},
identify = "adfasdfasfaf"
};
req.WorkflowTriggerDataEntity = new SubscriptionOrder_Cancel
{
OrderNo = "66"
};
var resp = target.SubscriptionOrder_Cancel(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