PHP: Adgroup Negative keywords

2014-11-10 Thread lasha kurtsikidze
Hello

PHP: v201409

I can not find the way how to get AdGroup level negative keywords and also 
I want to be able to remove it as well.


Thanks

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/a50a98f1-4329-46ff-936c-433f0cadf677%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Can't pause keyword

2014-04-28 Thread lasha
Having problem with pausing keyword

// Include the initialization file
require_once dirname(dirname(__FILE__)) . '/init.php';

// Enter parameters required by the code example.
$adGroupId = $_GET[adgroup];
$criterionId = $_GET[keyword];

/**
 * Runs the example.
 * @param AdWordsUser $user the user to run the example with
 * @param string $adGroupId the id of the ad group that the keyword is in
 * @param string $criterionId the id of the keyword to delete
 */
function DeleteKeywordExample(AdWordsUser $user, $adGroupId, $criterionId) {
  // Get the service, which loads the required classes.
  $adGroupCriterionService =
  $user->GetService('AdGroupCriterionService', ADWORDS_VERSION);

  // Create criterion using an existing ID. Use the base class Criterion
  // instead of Keyword to avoid having to set keyword-specific fields.
  $criterion = new Criterion();
  $criterion->id = $criterionId;

  // Create ad group criterion.
  $adGroupCriterion = new AdGroupCriterion();
  $adGroupCriterion->adGroupId = $adGroupId;
  $adGroupCriterion->criterion = $criterion;
  $adGroupCriterion->userStatus = 'PAUSED';

  // Create operation.
  $operation = new AdGroupCriterionOperation();
  $operation->operand = $adGroupCriterion;
  $operation->operator = 'SET';
  $operations = array($operation);

  // Make the mutate request.
  $result = $adGroupCriterionService->mutate($operations);

  // Display result.
  $adGroupCriterion = $result->value[0];
   printf("Keyword with ID '%s' was deleted.\n",
  $adGroupCriterion->criterion->id);
}

// Don't run the example if the file is being included.
if (__FILE__ != realpath($_SERVER['PHP_SELF'])) {
  //return;
}

try {
  // Get AdWordsUser from credentials in "../auth.ini"
  // relative to the AdWordsUser.php file's directory.
  $user = new AdWordsUser();

  // Log every SOAP XML request and response.
 // $user->LogAll();

  // Run the example.
  DeleteKeywordExample($user, $adGroupId, $criterionId);
} catch (Exception $e) {
  printf("An error has occurred: %s\n", $e->getMessage());
}

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: KEYWORDS_PERFORMANCE_REPORT Incorrect Data

2014-04-16 Thread lasha
Resolved. Problem was on my side.
Duplicate Keyword ID.

I was not aware that same keyword may have same ID in different ad groups.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


KEYWORDS_PERFORMANCE_REPORT Incorrect Data

2014-04-16 Thread lasha
Hello

I'm trying to get YESTERDAY's keyword performance data. When ever I use 
selector and specify campaigns I want to get data from it provides correct 
data. But when I remove selector and trying to get all yesterdays 
performance the data I receive is incorrect.

Any clue what can be wrong?


http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 * @packageGoogleApiAdsAdWords
 * @subpackage v201309
 * @category   WebServices
 * @copyright  2012, Google Inc. All Rights Reserved.
 * @licensehttp://www.apache.org/licenses/LICENSE-2.0 Apache License,
 * Version 2.0
 * @author Eric Koleda
 */

// Include the initialization file
require_once dirname(dirname(__FILE__)) . '/init.php';

require_once ADWORDS_UTIL_PATH . '/ReportUtils.php';

/**
 * Runs the example.
 * @param AdWordsUser $user the user to run the example with
 * @param string $filePath the path of the file to download the report to
 */
function DownloadCriteriaReportExample(AdWordsUser $user, $filePath) {
  // Load the service, so that the required classes are available.
  $user->LoadService('ReportDefinitionService', ADWORDS_VERSION);

  // Create selector.
  $selector = new Selector();
  $selector->fields = 
array('Id','CampaignId','AdGroupId','KeywordText','KeywordMatchType','Clicks','AveragePosition','Impressions','Cost','AverageCpc','Device','QualityScore','Status','MaxCpc','Date');

  // Filter out deleted criteria.
  
  //$selector->predicates[] = new Predicate('CampaignId', 'IN', 
array(164051439,164051319,164051559));

  // Create report definition.
  $reportDefinition = new ReportDefinition();
  $reportDefinition->selector = $selector;
  $reportDefinition->reportName = 'ACCOUNT #' . uniqid();
  $reportDefinition->dateRangeType = 'YESTERDAY';
  $reportDefinition->reportType = 'KEYWORDS_PERFORMANCE_REPORT';
  $reportDefinition->downloadFormat = 'XML';

  // Exclude criteria that haven't recieved any impressions over the date 
range.
  $reportDefinition->includeZeroImpressions = FALSE;

  // Set additional options.
  $options = array('version' => ADWORDS_VERSION, 'returnMoneyInMicros' => 
TRUE);

  // Download report.
  ReportUtils::DownloadReport($reportDefinition, $filePath, $user, 
$options);
  echo '';
  print_r ($filePath);
  printf("Report with name '%s' was downloaded to '%s'.\n",
  $reportDefinition->reportName, $filePath);
}

// Don't run the example if the file is being included.
if (__FILE__ != realpath($_SERVER['PHP_SELF'])) {
  // return;
}

try {
  // Get AdWordsUser from credentials in "../auth.ini"
  // relative to the AdWordsUser.php file's directory.
  $user = new AdWordsUser();

  // Log every SOAP XML request and response.
  // $user->LogAll();

  // Download the report to a file in the same directory as the example.
  $filePath = dirname(__FILE__) . '/keywords_yesterday.xml';

  // Run the example.
  DownloadCriteriaReportExample($user, $filePath);
} catch (Exception $e) {
  printf("An error has occurred: %s\n", $e->getMessage());
}

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Can't get paging work properly

2014-03-14 Thread lasha
Thanks, Josh


On Thursday, March 13, 2014 2:16:52 PM UTC-4, Josh Radcliff (AdWords API 
Team) wrote:
>
> Hi,
>
> If all you want is to print out the first 25 ad groups, then change the 
> code to:
>
>1. Construct a Paging object with new Paging(0, 25) [as you have done]
>2. Remove the do and while lines so that the example stops after 
>processing the first page of 25 results
>
> If that's not what you're trying to do, could you provide some more 
> details on your use case?
>
> Thanks,
> Josh, AdWords API Team
>
> On Thursday, March 13, 2014 12:53:04 PM UTC-4, la...@techknowspace.comwrote:
>>
>> Hey,
>>
>> It returns all the adGroups in the selected campaign.
>>
>> I tried this approach to which did not work as well
>>
>>   $selector->paging = new Paging();
>>   $selector->paging->startIndex=0; 
>>   $selector->paging->numberResults = 25;
>>
>>
>> Any idea what i'm doing wrong?
>>
>> Thanks
>>
>> On Tuesday, March 11, 2014 11:17:34 AM UTC-4, la...@techknowspace.comwrote:
>>>
>>> *v201402*
>>>
>>> function GetAdGroupsExample(AdWordsUser $user, $campaignId) {
>>>   // Get the service, which loads the required classes.
>>>   $adGroupService = $user->GetService('AdGroupService', ADWORDS_VERSION);
>>>
>>>   // Create selector.
>>>   $selector = new Selector();
>>>   $selector->fields = array('Id', 'Name');
>>>   $selector->ordering[] = new OrderBy('Name', 'ASCENDING');
>>>
>>>   // Create predicates.
>>>   $selector->predicates[] =
>>>   new Predicate('CampaignId', 'IN', array($campaignId));
>>>
>>>   // Create paging controls.
>>>   $selector->paging = new Paging(0, 
>>> AdWordsConstants::RECOMMENDED_PAGE_SIZE);
>>>
>>>   do {
>>> // Make the get request.
>>> $page = $adGroupService->get($selector);
>>>
>>> // Display results.
>>> if (isset($page->entries)) {
>>>   foreach ($page->entries as $adGroup) {
>>> printf("Ad group with name '%s' and ID '%s' was found.\n",
>>> $adGroup->name, $adGroup->id);
>>>   }
>>> } else {
>>>   print "No ad groups were found.\n";
>>> }
>>>
>>> // Advance the paging index.
>>> $selector->paging->startIndex += 
>>> AdWordsConstants::RECOMMENDED_PAGE_SIZE;
>>>   } while ($page->totalNumEntries > $selector->paging->startIndex);
>>> }
>>>
>>>
>>>
>>>
>>>
>>> --
>>>
>>> I'm trying to get 100 results at the time
>>>
>>> Thanks
>>>
>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Can't get paging work properly

2014-03-13 Thread lasha
Hey,

It returns all the adGroups in the selected campaign.

I tried this approach to which did not work as well

  $selector->paging = new Paging();
  $selector->paging->startIndex=0; 
  $selector->paging->numberResults = 25;


Any idea what i'm doing wrong?

Thanks

On Tuesday, March 11, 2014 11:17:34 AM UTC-4, la...@techknowspace.com wrote:
>
> *v201402*
>
> function GetAdGroupsExample(AdWordsUser $user, $campaignId) {
>   // Get the service, which loads the required classes.
>   $adGroupService = $user->GetService('AdGroupService', ADWORDS_VERSION);
>
>   // Create selector.
>   $selector = new Selector();
>   $selector->fields = array('Id', 'Name');
>   $selector->ordering[] = new OrderBy('Name', 'ASCENDING');
>
>   // Create predicates.
>   $selector->predicates[] =
>   new Predicate('CampaignId', 'IN', array($campaignId));
>
>   // Create paging controls.
>   $selector->paging = new Paging(0, 
> AdWordsConstants::RECOMMENDED_PAGE_SIZE);
>
>   do {
> // Make the get request.
> $page = $adGroupService->get($selector);
>
> // Display results.
> if (isset($page->entries)) {
>   foreach ($page->entries as $adGroup) {
> printf("Ad group with name '%s' and ID '%s' was found.\n",
> $adGroup->name, $adGroup->id);
>   }
> } else {
>   print "No ad groups were found.\n";
> }
>
> // Advance the paging index.
> $selector->paging->startIndex += 
> AdWordsConstants::RECOMMENDED_PAGE_SIZE;
>   } while ($page->totalNumEntries > $selector->paging->startIndex);
> }
>
>
>
>
>
> --
>
> I'm trying to get 100 results at the time
>
> Thanks
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Can't get paging work properly

2014-03-11 Thread lasha
*v201402*

function GetAdGroupsExample(AdWordsUser $user, $campaignId) {
  // Get the service, which loads the required classes.
  $adGroupService = $user->GetService('AdGroupService', ADWORDS_VERSION);

  // Create selector.
  $selector = new Selector();
  $selector->fields = array('Id', 'Name');
  $selector->ordering[] = new OrderBy('Name', 'ASCENDING');

  // Create predicates.
  $selector->predicates[] =
  new Predicate('CampaignId', 'IN', array($campaignId));

  // Create paging controls.
  $selector->paging = new Paging(0, 
AdWordsConstants::RECOMMENDED_PAGE_SIZE);

  do {
// Make the get request.
$page = $adGroupService->get($selector);

// Display results.
if (isset($page->entries)) {
  foreach ($page->entries as $adGroup) {
printf("Ad group with name '%s' and ID '%s' was found.\n",
$adGroup->name, $adGroup->id);
  }
} else {
  print "No ad groups were found.\n";
}

// Advance the paging index.
$selector->paging->startIndex += 
AdWordsConstants::RECOMMENDED_PAGE_SIZE;
  } while ($page->totalNumEntries > $selector->paging->startIndex);
}





--

I'm trying to get 100 results at the time

Thanks

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Expected clickthrough rate, Ad relevance, Landing page experience

2014-03-06 Thread lasha
I got it.



require_once dirname(dirname(__FILE__)) . '/init.php';
// Enter parameters required by the code example.
$adGroupId = '11172758199';

function GetKeywordsExample(AdWordsUser $user, $adGroupId) {
  // Get the service, which loads the required classes.
  $adGroupCriterionService =$user->GetService('AdGroupCriterionService', 
ADWORDS_VERSION);

  // Create selector.
  $selector = new Selector();
  $selector->fields = 
array('KeywordText','KeywordMatchType','QualityScore','IsKeywordAdRelevanceAcceptable','IsLandingPageLatencyAcceptable','IsLandingPageQualityAcceptable');

  // Create predicates.
  $selector->predicates[] = new Predicate('AdGroupId', 'IN', 
array($adGroupId));

  // Create paging controls.
  $selector->paging = new Paging(0, 
AdWordsConstants::RECOMMENDED_PAGE_SIZE);

  do {
// Make the get request.
$page = $adGroupCriterionService->get($selector);

// Display results.
/* if (isset($page->entries)) {
  foreach ($page->entries as $adGroupCriterion) {
  printf("Keyword with text '%s', match type '%s', and ID '%s' was '%s'"
  . "found.\n", $adGroupCriterion->criterion->text,
  $adGroupCriterion->criterion->matchType,
  $adGroupCriterion->criterion->id);
  }
} else {
  print "No keywords were found.\n";
} */
 echo '';
print_r($page->entries);

// Advance the paging index.
$selector->paging->startIndex += 
AdWordsConstants::RECOMMENDED_PAGE_SIZE;
  } while ($page->totalNumEntries > $selector->paging->startIndex);
}

// Don't run the example if the file is being included.
if (__FILE__ != realpath($_SERVER['PHP_SELF'])) {
  //return;
}

try {
  // Get AdWordsUser from credentials in "../auth.ini"
  // relative to the AdWordsUser.php file's directory.
  $user = new AdWordsUser();

  // Log every SOAP XML request and response.
  $user->LogAll();

  // Run the example.
  GetKeywordsExample($user, $adGroupId);
} catch (Exception $e) {
  printf("An error has occurred: %s\n", $e->getMessage());
}



On Thursday, March 6, 2014 12:24:35 PM UTC-5, la...@techknowspace.com wrote:
>
> Hey,
>
> Is there any PHP example how can I retrieve that data.
>
> I'm having hard time to get it.
>
>
> On Wednesday, March 5, 2014 5:15:50 PM UTC-5, Ray Tsang (AdWords API Team) 
> wrote:
>>
>> Lasha,
>>
>> You'll need to use the AdGroupCriterionService, and check the selector 
>> documentations<https://developers.google.com/adwords/api/docs/appendix/selectorfields#v201309-AdGroupCriterionService>
>> .
>>
>> Cheers,
>>
>> Ray
>>
>> On Wednesday, March 5, 2014 5:05:19 PM UTC-5, la...@techknowspace.comwrote:
>>>
>>> Thanks,
>>>
>>> I use PHP to get Reports. Which approach should I use to get 
>>> QualityInfo<https://developers.google.com/adwords/api/docs/reference/v201309/AdGroupCriterionService.QualityInfo>
>>> .
>>>
>>> I'm having difficulty to find one.
>>>
>>> Thanks ahead
>>>
>>> On Wednesday, March 5, 2014 1:49:34 PM UTC-5, Ray Tsang (AdWords API 
>>> Team) wrote:
>>>>
>>>> Lasha,
>>>>
>>>> Thanks for confirming.  The information in 
>>>> QualityInfo<https://developers.google.com/adwords/api/docs/reference/v201309/AdGroupCriterionService.QualityInfo>is
>>>>  the data that are available at the moment.
>>>>
>>>> Cheers,
>>>>
>>>> Ray
>>>>
>>>>
>>>> On Tuesday, March 4, 2014 6:19:27 PM UTC-5, la...@techknowspace.comwrote:
>>>>>
>>>>> Hey
>>>>>
>>>>> When you got to keywords tab from UI and hover on one of the keywords 
>>>>> status you see it there.
>>>>>
>>>>> Quality score Learn 
>>>>> more<https://support.google.com/adwords/answer/140351?&hl=en_US>
>>>>>  
>>>>> 8/10
>>>>>  
>>>>>
>>>>>- Expected clickthrough 
>>>>> rate:<https://support.google.com/adwords/answer/1659696?&hl=en_US>
>>>>> Average
>>>>>- Ad 
>>>>> relevance:<https://support.google.com/adwords/answer/1659752?&hl=en_US>
>>>>> Above average
>>>>>- Landing page 
>>>>> experience:<https://support.google.

Re: Expected clickthrough rate, Ad relevance, Landing page experience

2014-03-06 Thread lasha
Hey,

Is there any PHP example how can I retrieve that data.

I'm having hard time to get it.


On Wednesday, March 5, 2014 5:15:50 PM UTC-5, Ray Tsang (AdWords API Team) 
wrote:
>
> Lasha,
>
> You'll need to use the AdGroupCriterionService, and check the selector 
> documentations<https://developers.google.com/adwords/api/docs/appendix/selectorfields#v201309-AdGroupCriterionService>
> .
>
> Cheers,
>
> Ray
>
> On Wednesday, March 5, 2014 5:05:19 PM UTC-5, la...@techknowspace.comwrote:
>>
>> Thanks,
>>
>> I use PHP to get Reports. Which approach should I use to get 
>> QualityInfo<https://developers.google.com/adwords/api/docs/reference/v201309/AdGroupCriterionService.QualityInfo>
>> .
>>
>> I'm having difficulty to find one.
>>
>> Thanks ahead
>>
>> On Wednesday, March 5, 2014 1:49:34 PM UTC-5, Ray Tsang (AdWords API 
>> Team) wrote:
>>>
>>> Lasha,
>>>
>>> Thanks for confirming.  The information in 
>>> QualityInfo<https://developers.google.com/adwords/api/docs/reference/v201309/AdGroupCriterionService.QualityInfo>is
>>>  the data that are available at the moment.
>>>
>>> Cheers,
>>>
>>> Ray
>>>
>>>
>>> On Tuesday, March 4, 2014 6:19:27 PM UTC-5, la...@techknowspace.comwrote:
>>>>
>>>> Hey
>>>>
>>>> When you got to keywords tab from UI and hover on one of the keywords 
>>>> status you see it there.
>>>>
>>>> Quality score Learn 
>>>> more<https://support.google.com/adwords/answer/140351?&hl=en_US>
>>>>  
>>>> 8/10
>>>>  
>>>>
>>>>- Expected clickthrough 
>>>> rate:<https://support.google.com/adwords/answer/1659696?&hl=en_US>
>>>> Average
>>>>- Ad 
>>>> relevance:<https://support.google.com/adwords/answer/1659752?&hl=en_US>
>>>> Above average
>>>>- Landing page 
>>>> experience:<https://support.google.com/adwords/answer/1659694?&hl=en_US>
>>>> Above average
>>>>
>>>>
>>>>
>>>> On Tuesday, February 11, 2014 11:59:31 AM UTC-5, Ray Tsang (AdWords API 
>>>> Team) wrote:
>>>>>
>>>>> Lasha,
>>>>>
>>>>> Could I trouble you to confirm where in the AdWords UI are you seeing 
>>>>> these metrics?
>>>>>
>>>>> Thanks,
>>>>>
>>>>> --
>>>>> Ray Tsang (AdWords API Advisor)
>>>>>
>>>>>
>>>>> On Friday, February 7, 2014 1:11:50 PM UTC-5, 
>>>>> la...@techknowspace.comwrote:
>>>>>>
>>>>>> Hello
>>>>>>
>>>>>> I'm trying to find the way to get next metrics
>>>>>>
>>>>>> Expected clickthrough rate
>>>>>> Ad relevance
>>>>>> Landing page experience 
>>>>>>
>>>>>> Do you know if it's available trough API or not? 
>>>>>>
>>>>>> If not do you know if it will be anytime soon?
>>>>>>
>>>>>>
>>>>>> Thanks
>>>>>>
>>>>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Expected clickthrough rate, Ad relevance, Landing page experience

2014-03-05 Thread lasha
Thanks,

I use PHP to get Reports. Which approach should I use to get 
QualityInfo<https://developers.google.com/adwords/api/docs/reference/v201309/AdGroupCriterionService.QualityInfo>
.

I'm having difficulty to find one.

Thanks ahead

On Wednesday, March 5, 2014 1:49:34 PM UTC-5, Ray Tsang (AdWords API Team) 
wrote:
>
> Lasha,
>
> Thanks for confirming.  The information in 
> QualityInfo<https://developers.google.com/adwords/api/docs/reference/v201309/AdGroupCriterionService.QualityInfo>is
>  the data that are available at the moment.
>
> Cheers,
>
> Ray
>
>
> On Tuesday, March 4, 2014 6:19:27 PM UTC-5, la...@techknowspace.com wrote:
>>
>> Hey
>>
>> When you got to keywords tab from UI and hover on one of the keywords 
>> status you see it there.
>>
>> Quality score Learn 
>> more<https://support.google.com/adwords/answer/140351?&hl=en_US>
>>  
>> 8/10
>>  
>>
>>- Expected clickthrough 
>> rate:<https://support.google.com/adwords/answer/1659696?&hl=en_US>
>> Average
>>- Ad 
>> relevance:<https://support.google.com/adwords/answer/1659752?&hl=en_US>
>> Above average
>>- Landing page 
>> experience:<https://support.google.com/adwords/answer/1659694?&hl=en_US>
>> Above average
>>
>>
>>
>> On Tuesday, February 11, 2014 11:59:31 AM UTC-5, Ray Tsang (AdWords API 
>> Team) wrote:
>>>
>>> Lasha,
>>>
>>> Could I trouble you to confirm where in the AdWords UI are you seeing 
>>> these metrics?
>>>
>>> Thanks,
>>>
>>> --
>>> Ray Tsang (AdWords API Advisor)
>>>
>>>
>>> On Friday, February 7, 2014 1:11:50 PM UTC-5, la...@techknowspace.comwrote:
>>>>
>>>> Hello
>>>>
>>>> I'm trying to find the way to get next metrics
>>>>
>>>> Expected clickthrough rate
>>>> Ad relevance
>>>> Landing page experience 
>>>>
>>>> Do you know if it's available trough API or not? 
>>>>
>>>> If not do you know if it will be anytime soon?
>>>>
>>>>
>>>> Thanks
>>>>
>>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Expected clickthrough rate, Ad relevance, Landing page experience

2014-03-04 Thread lasha
Hey

When you got to keywords tab from UI and hover on one of the keywords 
status you see it there.

Quality score Learn 
more<https://support.google.com/adwords/answer/140351?&hl=en_US>
 
8/10
 

   - Expected clickthrough 
rate:<https://support.google.com/adwords/answer/1659696?&hl=en_US>
Average
   - Ad relevance:<https://support.google.com/adwords/answer/1659752?&hl=en_US>
Above average
   - Landing page 
experience:<https://support.google.com/adwords/answer/1659694?&hl=en_US>
Above average
   


On Tuesday, February 11, 2014 11:59:31 AM UTC-5, Ray Tsang (AdWords API 
Team) wrote:
>
> Lasha,
>
> Could I trouble you to confirm where in the AdWords UI are you seeing 
> these metrics?
>
> Thanks,
>
> --
> Ray Tsang (AdWords API Advisor)
>
>
> On Friday, February 7, 2014 1:11:50 PM UTC-5, la...@techknowspace.comwrote:
>>
>> Hello
>>
>> I'm trying to find the way to get next metrics
>>
>> Expected clickthrough rate
>> Ad relevance
>> Landing page experience 
>>
>> Do you know if it's available trough API or not? 
>>
>> If not do you know if it will be anytime soon?
>>
>>
>> Thanks
>>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Expected clickthrough rate, Ad relevance, Landing page experience

2014-03-04 Thread lasha
Yes

On Tuesday, February 11, 2014 5:09:03 PM UTC-5, Oliver wrote:
>
> Are you referring to this?
>
>
> https://groups.google.com/forum/#!searchin/adwords-api/keyword$20bubble/adwords-api/P3cRncfNfA4/0LpiCkP0IR4J
>
>
> On Friday, February 7, 2014 6:11:50 PM UTC, la...@techknowspace.com wrote:
>>
>> Hello
>>
>> I'm trying to find the way to get next metrics
>>
>> Expected clickthrough rate
>> Ad relevance
>> Landing page experience 
>>
>> Do you know if it's available trough API or not? 
>>
>> If not do you know if it will be anytime soon?
>>
>>
>> Thanks
>>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Expected clickthrough rate, Ad relevance, Landing page experience

2014-02-10 Thread lasha
Hello

I'm trying to find the way to get next metrics

Expected clickthrough rate
Ad relevance
Landing page experience 

Do you know if it's available trough API or not? 

If not do you know if it will be anytime soon?


Thanks

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.