I was trying to create C# application that loads SoftLayer Billing data to my Database. I was trying to bring only filtered Billing data using ObjectFilter. For example, I wanted to bring only invoice ID of 12345.
Can someone help complete the code below ?
using com.softlayer.api;
SoftLayer_AccountService accountService = new SoftLayer_AccountService();
String username = "UserName";
String apiKey = "UserKey";
authenticate authenticate = new authenticate();
authenticate.username = username;
authenticate.apiKey = apiKey;
accountService.authenticateValue = authenticate;
SoftLayer_Billing_Invoice_ItemObjectFilter objFilt = new SoftLayer_Billing_Invoice_ItemObjectFilter();
///
///
SoftLayer_Billing_Invoice[] inv = accountService.getInvoices();