SoftLayer API: How can I get all invoices for one specific order ?
e.g. I placed three orders: one monthly virutal server with orderId1, one hourly bare metal server with orderId2, one monthly baremetal server with orderId3.
SoftLayer_Billing_Order-> getInitialInvoice() can return me my initial invoice of one order.
SoftLayer_Account->getInvoices can return me all of my invoices. Each SoftLayer_Billing_Invoice includes details of all my three orders.
I'm trying to find the API that can return me invoices for only one order.
e.g get the amount from each billing cycle for a device using the orderId as input parameter
Is there a way to do this?
Thanks.