To respond to myself – the missing part of
the Hash was, indeed, the attribute type:
srv.get_bulk_keyword_ideas({
:idea_type => 'KEYWORD',
:paging => { :start_index => 0, :number_results => 1 },
:requested_attribute_types => ['NGRAM_GROUP'],
:request_type => 'IDEAS',
:search_parameters =
When trying to come up with a minimal
TargetingIdeaService.getBulkKeywordIdeas
example in Ruby I ended with the below:
srv = @api.service :TargetingIdeaService, :v201101
srv.get_bulk_keyword_ideas({
:idea_type => 'KEYWORD',
:paging => { :start_index => 0, :number_results => 1 },
:request_typ