Hi Sergio,
SearchVolumeSearchParameter is used to set the search volume bounds on the results. SearchVolumeSearchParameter does take operation parameter, which in turn takes a maximum and a minimum limit.
Java code:
SearchVolumeSearchParameter searchVolumeSearchParameter = new SearchVolumeSearchParameter();
LongComparisonOperation lco = new LongComparisonOperation();
lco.setMaximum(100000L);
lco.setMinimum(1L);
searchVolumeSearchParameter.setOperation(lco);
SOAP request:
<ns15:operation>
<ns15:minimum>1</ns15:minimum>
<ns15:maximum>100000</ns15:maximum>
</ns15:operation>
</searchParameters>
The <searchParamaters> section related to SearchVolumeSearchParameter in the SOAP request would go along-side the other searchParamaters such as NetworkSearchParameter and LanguageSearchParameter (if used in the request). Please note that SearchVolumeSearchParameter cannot be used to identify criteria/platform type. Also, search volume based on criteria/platform type is currently not supported by TargetingIdeaService.
Could you please confirm if you are trying to construct the SOAP request manually? You can also check out our
client libraries which can be used to interact with the API.
Regards,
Vishal, AdWords API Team