Softlayer Api Verify Order Fail
Solution 1:
You need to choose other item price id which is located in the Location/Datacenter that you are using.
To get valid item price ids according to locations, you can execute:
https://[username]:[apikey]@api.softlayer.com/rest/v3/SoftLayer_Product_Package/46/getItemPrices?objectMask=mask[id,locationGroupId,item[keyName,description],pricingLocationGroup[locations[id, name, longName]]]
Method: GET
Note: A price id with a locationGroupId = null is considered "A standard price" and the API will internally switch the prices for the customer. But we recommend to execute first the verifyOrder in order to see if the wanted order is ok (the fee can vary).
Additionally, the following request can help you to get valid item prices according to a specific Location/Datacenter (Just adding some filters to the previous request):
List of prices with available locations according to a specific package:
https://[username]:[apikey]@api.softlayer.com/rest/v3/SoftLayer_Product_Package/[package_id]/getItemPrices?objectMask=mask[id,item.description,hourlyRecurringFee,locationGroupId,pricingLocationGroup[locations[id, name, longName]]]&objectFilter={"itemPrices":{"pricingLocationGroup":{"locations":{"id":{"operation":"814994"}}}}}
Where: "814994" is "Amsterdam 3"
Method: GET
Also, to list packages with available locations:
Post a Comment for "Softlayer Api Verify Order Fail"