When i adding conversions (website, phone, app) can get the snippet of the code after mutate request. But fetching all conversions from the "ConversionTrackerService" always returns an empty snippet.
This is the code i am using.How can i get the snippet of corresponding conversions.
$conversionTrackerService = $this->GetService('ConversionTrackerService', ADWORDS_VERSION);
$selector = new Selector();
$selector->fields = array('Id', 'Name', 'Category');
$selector->predicates[] =
new Predicate('Status', 'IN', array('ENABLED'));
$result = $conversionTrackerService->get($selector);
return $result;