Title: Google Ads will Automatically Pause low-activity Keywords
Author: Kriko
Published: Apr 30, 2024
Last modified: Jul 18, 2026

---

 1.  [Home](https://kriko.io/) /
 2.  [Blog](https://kriko.io/blog) /
 3.  [PPC](https://kriko.io/blog/ppc)

# Google Ads will Automatically Pause low-activity Keywords

 [ ⌊Uğur Eskici⌉ Uğur Eskici ](https://kriko.io/blog/author/ugureskici)  Apr 30,
2024

  4 mins read

![Google Ads will Automatically Pause low-activity Keywords](https://kriko.io/wp-
content/uploads/2026/07/google-ads-otomatik-reklam-duraklatma.jpg)

Google will begin automatically pausing ad groups that have not served after a certain
period of time to improve the Google Ads experience. This appears likely to simplify
accounts, speed up account access, and allow advertisers to focus on the ad groups
that generate results for their campaigns.

Starting in June 2024, Google will also begin automatically pausing low-activity
keywords. Positive keywords in Search campaigns will be considered low activity 
if they were created more than 13 months ago and received zero impressions during
the previous 13 months.

## Why Is This Change Being Made?

Google states that it wants to help advertisers simplify their accounts and focus
on the keywords that generate results. Overall, we can say that this change will
make account management easier for both Google and advertising agencies.

If you decide that a paused keyword is necessary for your campaign, you can enable
it again. However, Google strongly recommends re-enabling only the keywords that
you believe will receive impressions in the coming weeks. Keywords that have been
re-enabled will automatically be paused again if they do not receive any impressions
during the following three months.

Navah Hopkins from Optmyzr shared the following thoughts on the subject:

I am very excited about this update! For years, I have been asking brands to pause
the things that do not work so that they can improve budget efficiency. This is 
definitely a positive development for the following reasons:

🔥 **Google sets budgets at the campaign level.** If you have too many ad groups,
particularly more than 10, your budget will probably not be able to support all 
of them.

🔥 **Ad groups that receive no impressions reduce the overall quality of the campaign.**
If you have too many keywords and ad groups that do nothing, this creates poor-quality
data. Zero impressions are not the same as low search volume, and it has been confirmed
that low-search-volume keywords do not harm your account. However, if you have a
supposedly valuable keyword or ad group that receives no activity, it will negatively
affect your average data quality.

🔥 **Pausing is not the same as removing.** You can always reverse the action. In
addition, the 13-month time frame confirms that Google is evaluating established
accounts and taking seasonality into consideration.

## What Do I Need to Change?

No code changes are required. However, Google Ads API developers may make changes
to provide advertisers with greater transparency about why `ad_group.status` has
been set to `PAUSED`. If you maintain local copies of Google Ads data in your database,
you can keep them synchronised by querying the change history.

For all API versions, you can query the `change_event` resource using the following
query to determine whether an ad group’s status has changed. If `change_event.changed_fields`
includes the status field, it indicates an ad group that Google has paused.

Make sure to replace `INSERT_YYYY-MMM-DD` with your own date range.

    ```language-sql
    SELECT ad_group.status, ad_group.resource_name, ad_group.name, 
    ad_group.id, change_event.change_date_time, 
    change_event.new_resource, change_event.old_resource, 
    change_event.changed_fields, change_event.change_resource_type, 
    change_event.user_email, change_event.ad_group 
    FROM change_event 
    WHERE change_event.user_email = 'Low activity system bulk change'  
    AND change_event.change_resource_type = 'AD_GROUP' 
    AND ad_group.status = 'PAUSED' 
    AND change_event.change_date_time >= 'INSERT_YYYY-MMM-DD' 
    AND change_event.change_date_time <= 'INSERT_YYYY-MMM-DD' 
    ORDER BY change_event.change_date_time DESC LIMIT 50
    ```

A change event showing that an ad group was paused by Google will look similar to
the following:

    ```language-json
    {
      "adGroup": {
        "resourceName": "customers/1234567890/adGroups/5432154321",
        "status": "PAUSED",
        "id": "5432154321",
        "name": "Your ad group name"
      },
      "changeEvent": {
        "resourceName": "customers/1234567890/changeEvents/1708648783892610~5~0",
        "changeDateTime": "2024-02-22 16:39:43.89261",
        "changeResourceType": "AD_GROUP",
        "userEmail": "Low activity system bulk change",
        "oldResource": {
          "adGroup": {
            "status": "ENABLED"
          }
        },
        "newResource": {
          "adGroup": {
            "status": "PAUSED"
          }
        },
        "changedFields": "status",
        "adGroup": "customers/1234567890/adGroups/5432154321"
      }
    }
    ```

Starting with v16, the API will return the reason why the ad group was paused through
new fields. You can update the change history query to include these fields.

  |  API Version |  Querying Ad Group Changes |  
   |  v16.1+ |  Starting in v16.1, `ad_group.primary_status_reasons` will contain `AD_GROUP_PAUSED_DUE_TO_LOW_ACTIVITY` if `ad_group.primary_status` is set to `PAUSED` by Google. |  
 |  v16 |  Starting in v16, `ad_group.primary_status_reasons` will contain `AD_GROUP_PAUSED` if `ad_group.primary_status` is set to `PAUSED` by Google. |

You will still be able to update and modify your ad groups while they are paused.
The rollout is expected to take slightly more than seven weeks and to be completed
for all Google Ads accounts by 30 April.

---

 Share:

---

## 0 Comments

 [ No comments yet - be the first to share your thoughts on this article! ](https://kriko.io/blog/ppc/google-ads-will-automatically-pause-low-activity-keywords?output_format=md#respond)

---

## Leave a comment

  By checking this box, you confirm that you have read and agreed to the [**terms of use**](https://kriko.io/privacy-policy).

## Another Articles

 [ ⌊A New Line of Defense Against AI Slop: A LoRA-Powered Multimodal Defense System⌉ ](https://kriko.io/blog/discover/a-new-line-of-defense-against-ai-slop-a-lora-powered-multimodal-defense-system)

 *  [ Discover ](https://kriko.io/blog/discover)

###  󠀁[ A New Line of Defense Against AI Slop: A LoRA-Powered Multimodal Defense System ](https://kriko.io/blog/discover/a-new-line-of-defense-against-ai-slop-a-lora-powered-multimodal-defense-system)󠁿

Programmatic and/or templated content is being mass-produced to bypass platform 
quality filters, direct users to off-platform scams, or promote harmful services.
Today, we will…

 [ ⌊Microsoft Advertising UTM Auto-Tagging Update⌉ ](https://kriko.io/blog/ppc/microsoft-advertising-utm-auto-tagging-update)

 *  [ PPC ](https://kriko.io/blog/ppc)

###  󠀁[ Microsoft Advertising UTM Auto-Tagging Update ](https://kriko.io/blog/ppc/microsoft-advertising-utm-auto-tagging-update)󠁿

Until now, different campaign formats originating from Microsoft Advertising were
often grouped under a broader paid search structure within analytics platforms. 
This created limited…

 [ ⌊Pagination or Infinite Scroll?⌉ ](https://kriko.io/blog/technical-seo/pagination-or-infinite-scroll)

 *  [ Technical SEO ](https://kriko.io/blog/seo/technical-seo)

###  󠀁[ Pagination or Infinite Scroll? ](https://kriko.io/blog/technical-seo/pagination-or-infinite-scroll)󠁿

The two most common navigation methods used for content or product listings on websites
are pagination and infinite scroll. But which one is more…

 [ ⌊Increase your brand visibility and manage it with Google My Business⌉ ](https://kriko.io/blog/local-seo/increase-your-brand-visibility-and-manage-it-with-google-my-business)

 *  [ Local SEO ](https://kriko.io/blog/seo/local-seo)

###  󠀁[ Increase your brand visibility and manage it with Google My Business ](https://kriko.io/blog/local-seo/increase-your-brand-visibility-and-manage-it-with-google-my-business)󠁿

Google My Business, now known as Google Business Profile, is a free tool that allows
you to represent your business across Google Search and…

 [ ⌊The Rise of Marketplaces in Europe and Türkiye: A Transformation Worth €247.5 Billion⌉ ](https://kriko.io/blog/discover/the-rise-of-marketplaces-in-europe-and-turkiye-a-transformation-worth-e247-5-billion)

 *  [ Discover ](https://kriko.io/blog/discover)

###  󠀁[ The Rise of Marketplaces in Europe and Türkiye: A Transformation Worth €247.5 Billion ](https://kriko.io/blog/discover/the-rise-of-marketplaces-in-europe-and-turkiye-a-transformation-worth-e247-5-billion)󠁿

The world of e-commerce has been undergoing an unprecedented transformation in recent
years. At the center of this transformation are now not only brands…

 [ ⌊What is Sellers.json and what is its purpose?⌉ ](https://kriko.io/blog/programmatic/what-is-sellers-json-and-what-is-its-purpose)

 *  [ Programmatic ](https://kriko.io/blog/ppc/programmatic)

###  󠀁[ What is Sellers.json and what is its purpose? ](https://kriko.io/blog/programmatic/what-is-sellers-json-and-what-is-its-purpose)󠁿

It is estimated that 18% of programmatic impressions in the United States are fraudulent
and that ad fraud was at risk of reaching $88…

 [ ⌊We spoke with Craftgate Marketing Manager Taylan Kaymakcı about the world of Payment Orchestration.⌉ ](https://kriko.io/blog/talking/we-spoke-with-craftgate-marketing-manager-taylan-kaymakci-about-the-world-of-payment-orchestration)

 *  [ #talking ](https://kriko.io/blog/discover/talking)

###  󠀁[ We spoke with Craftgate Marketing Manager Taylan Kaymakcı about the world of Payment Orchestration. ](https://kriko.io/blog/talking/we-spoke-with-craftgate-marketing-manager-taylan-kaymakci-about-the-world-of-payment-orchestration)󠁿

Who is Taylan Kaymakcı? Could you tell us a little about yourself? Apart from my
university years in Eskişehir, I can say that I…

 [ ⌊What is Natural Language Processing (NLP)?⌉ ](https://kriko.io/blog/content-planning-production/what-is-natural-language-processing-nlp)

 *  [ Content Planning & Production ](https://kriko.io/blog/content-marketing/content-planning-production)

###  󠀁[ What is Natural Language Processing (NLP)? ](https://kriko.io/blog/content-planning-production/what-is-natural-language-processing-nlp)󠁿

Natural language processing, or NLP, is a branch of artificial intelligence that
aims to improve computers’ ability to understand, interpret, and generate human 
language.…

 [ ⌊We spoke with Ali Sarıkaya, Greyder’s E-Commerce & Digital Marketing Manager, About the Footwear Industry⌉ ](https://kriko.io/blog/talking/we-spoke-with-ali-sarikaya-greyders-e-commerce-digital-marketing-manager-about-the-footwear-industry)

 *  [ #talking ](https://kriko.io/blog/discover/talking)

###  󠀁[ We spoke with Ali Sarıkaya, Greyder’s E-Commerce & Digital Marketing Manager, About the Footwear Industry ](https://kriko.io/blog/talking/we-spoke-with-ali-sarikaya-greyders-e-commerce-digital-marketing-manager-about-the-footwear-industry)󠁿

Who is Ali Sarıkaya? Ali Sarıkaya entered the world of web-based software development
by beginning an associate degree in computer programming. For more than…

 [ ⌊Strengthen your SEO strategies with Featured Snippets⌉ ](https://kriko.io/blog/technical-seo/strengthen-your-seo-strategies-with-featured-snippets)

 *  [ Content Planning & Production ](https://kriko.io/blog/content-marketing/content-planning-production)

###  󠀁[ Strengthen your SEO strategies with Featured Snippets ](https://kriko.io/blog/technical-seo/strengthen-your-seo-strategies-with-featured-snippets)󠁿

Featured snippets stand out in Google search results as special information boxes
that provide users with quick and clear answers to their questions. In…

 [ ⌊Strategy, Creatives, and Optimization Tactics in TikTok Ads⌉ ](https://kriko.io/blog/tiktok/strategy-creatives-and-optimization-tactics-in-tiktok-ads)

 *  [ TikTok ](https://kriko.io/blog/ppc/tiktok)

###  󠀁[ Strategy, Creatives, and Optimization Tactics in TikTok Ads ](https://kriko.io/blog/tiktok/strategy-creatives-and-optimization-tactics-in-tiktok-ads)󠁿

At the end of the day, the platform still has a large and distinctive audience of
its own. This means it is possible to…

 [ ⌊Internationalized Domain Names (IDNs) and Security Risks⌉ ](https://kriko.io/blog/discover/internationalized-domain-names-idns-and-security-risks)

 *  [ Discover ](https://kriko.io/blog/discover)

###  󠀁[ Internationalized Domain Names (IDNs) and Security Risks ](https://kriko.io/blog/discover/internationalized-domain-names-idns-and-security-risks)󠁿

Unicode characters have also introduced a significant security risk known as homograph
attacks, or homoglyph attacks. These attacks aim to create fake websites by…

## Track the digital heartbeat  with Kriko

Subscribe to receive curated insights, news, and ideas shaping the digital landscape.

  By checking this box, you acknowledge and accept our [privacy policy](https://kriko.io/privacy-policy).