Retrieve a price option group
Overview
Use the getPriceOptionGroup method to extract information about a specific price option group that you configured.
Parameters
Parameters | Type/Description |
---|---|
ProductGroup |
Object Details below. |
sessionID |
Required (string) |
|
Session identifier, the output of the Login method. Include sessionID into all your requests. 2Checkout throws an exception if the values are incorrect. The sessionID expires in 10 minutes. |
groupCode |
Required (string) |
|
The code that the 2Checkout system generated or that you set for the product pricing options group. |
Response
Parameters | Type/Description |
---|---|
Array of objects |
Request
<?php
require ('PATH_TO_AUTH');
$groupCode = 'USERS';
try {
$existentPriceOptionGroup = $client->getPriceOptionGroup($sessionID, $groupCode);
}
catch (SoapFault $e) {
echo "existentPriceOptionGroup: " . $e->getMessage();
exit;
}
var_dump("existentPriceOptionGroup", $existentPriceOptionGroup);
?>