Hi all,
I would like to get Number of conversion from AdWords API. I'm trying to get these field in CAMPAIGN_PERFORMANCE_REPORT:
$selector = new \Selector();
$selector->fields = array('CampaignId', 'Cost', 'Conversions');
But it says INVALID_FIELD_NAME_FOR_REPORT, FieldPath = 'Conversions'
I tried to change 'Conversions' to 'AllConversions', but it didn't help. I can use 'ConvertedClicks' instead of 'AllConversions' and get the metrics, but I need number of conversions for our report, not converted clicks.
I use API version v201502.
Could you help me to solve this problem?