You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The "SoftLayer_Billing_Order_Quote::getRecalculatedOrderContainer" method fails and raises the following exception when is used with the perl client
"SOAP-ENV:Client , Missing parameter"
Please try the following code:
use SoftLayer::API::SOAP;
use strict;
use Data::Dumper;
my $apiUsername = 'set-me';
my $apiKey = 'set-me';
my $quoteId = 123456;
my $client = SoftLayer::API::SOAP->new('SoftLayer_Billing_Order_Quote', $quoteId, $apiUsername, $apiKey);
my $order_templates = $client->getRecalculatedOrderContainer();
if ($order_templates->fault) {
die "Unable to retrieve quotes. " . $order_templates->faultcode . " , " .$order_templates->faultstring;
}
The text was updated successfully, but these errors were encountered:
The "SoftLayer_Billing_Order_Quote::getRecalculatedOrderContainer" method fails and raises the following exception when is used with the perl client
"SOAP-ENV:Client , Missing parameter"
Please try the following code:
use SoftLayer::API::SOAP;
use strict;
use Data::Dumper;
my $apiUsername = 'set-me';
my $apiKey = 'set-me';
my $quoteId = 123456;
my $client = SoftLayer::API::SOAP->new('SoftLayer_Billing_Order_Quote', $quoteId, $apiUsername, $apiKey);
my $order_templates = $client->getRecalculatedOrderContainer();
if ($order_templates->fault) {
die "Unable to retrieve quotes. " . $order_templates->faultcode . " , " .$order_templates->faultstring;
}
The text was updated successfully, but these errors were encountered: