Search price option groups
Request parameters
Parameter
Type / Description
Request sample
<?php
require ('PATH_TO_AUTH');
$SearchOptions = new \stdClass();
//$searchObject->Name = 'optionGroupA';
$SearchOptions->Types = ["RADIO"];
$SearchOptions->Pagination = new stdClass();
$SearchOptions->Pagination->Page = 1;
$SearchOptions->Pagination->Limit = 200;
$jsonRpcRequest = new stdClass();
$jsonRpcRequest->jsonrpc = '2.0';
$jsonRpcRequest->method = 'searchPriceOptionGroups';
$jsonRpcRequest->params = array($sessionID, $SearchOptions);
$jsonRpcRequest->id = $i++;
$searchProducts = callRPC($jsonRpcRequest, $host);
?>Response parameters
Parameter
Type
Last updated
Was this helpful?