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 |
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'; $jsonRpcRequest = array ( 'jsonrpc' => '2.0', 'id' => $i++, 'method' => 'getPriceOptionGroup', 'params' => array($sessionID, $groupCode) ); var_dump (callRPC((Object)$jsonRpcRequest, $host));