January 6, 2016


Associate a Billing ID with the service or item it corresponds to in the SoftLayer catalog

You can use getAssociatedBillingItem or getAssociatedParent along with an Object Mask.
# https://api.softlayer.com/rest/v3/SoftLayer_Billing_Item/1234321/getAssociatedBillingItem
my $objectMask = {
   'id' =>''
};
$billing_client->setObjectMask($objectMask);
$result = $billing_client->getAssociatedParent();
print Dumper($result->result);

Feedback?

If this article contains any error, or leaves any of your questions unanswered, please help us out by opening up a github issue.
Open an issue