August 22, 2016


Find standard location pricing for a package

Use an object filter to only return the Standard Location pricing for a SoftLayer package. This is a priceItemId that is standard across all SoftLayer Datacenters

With the introduction to Location-based Pricing, we updated our pricing model to represent the costs in each data center more clearly. Instead of adding premiums to a base server price, we have priced servers and services in each data center with their own location-based SoftLayer_Product_Item_Price objects via the API. The following example shows how to get the Standard priceItemId for a package regardless of the location.

<?php

require_once './vendor/autoload.php';
$apiUsername = getenv('SOFTLAYER_USERNAME');
$apiKey = getenv('SOFTLAYER_API_KEY');
$packageId = 194;


try {
  $client = \SoftLayer\SoapClient::getClient('SoftLayer_Product_Package', $packageId, $apiUsername, $apiKey);
  $filter = new stdClass();
  $filter->items = new stdClass();
  $filter->items->prices = new stdClass();
  $filter->items->prices->locationGroupId = new stdClass();
  $filter->items->prices->locationGroupId->operation = 'is null';
  $client->setObjectFilter($filter);

  $standardPricing = $client->getItems();
  print_r($standardPricing);
}  catch (\Exception $e) {
  die('Cannot compute. Error is: ' . $e->getMessage());
}
?>

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