====== Quick Search Region Groups method ====== This method is **deprecated**. We will not include this method in the next API version. Returns a list of region groups by sending ''query'' string. Query string is a string that user enters in quick search field. ===== Valid content types ===== * ''hotel'' * ''pauschal'' * ''trips'' ===== Description ===== public array quickSearchRegionGroups( string $searchString, array $filter ) ===== Parameters ===== * ''searchString'' : search string (keywords) * ''filter (array)'' : some additional filters to be used in query. * ''[typ] (array)'' , a list of content types to search in. I.e. ''array('hotel', 'pauschal')'' * ''[toc] (array)'' , a list of tour operators * ''[lang] (String)'' , return language code ===== Return Values ===== Gets a list of region groups that matches query string. Array ( [920000] => Array ( [rgcs] => 920000 [rggn] => Slovenija ) ) ===== Return parameters ===== * ''rgcs'' : region group id * ''rggn'' : region name ===== Examples ===== * Example of ''quickSearchRegionGroups'' request $key = 'slovenija'; $filter = array( 'lang' => 'si', 'toc' => array('PALM','PHPL'), 'typ' => array('hotel', 'pauschal') ); $results = $soapClient->orsxml_quick_search_api_call( 'quickSearchRegionGroups', $key, $filter );