Share via

Why do my ads keep pausing?

Dalgleish, Claire 0 Reputation points
2026-03-09T09:51:51.8433333+00:00

Every day my ads keep pausing, I have tried to arrange a call with Microsoft on the off chance my ads are set up incorrectly (these were integrated from google) however each time I arrange this no one shows up!

I understand if you reach budget daily, the ads will pause however is there a way to have this un-pause when a new day is reached? My ads didn't run all weekend due to this and I am unsure how to overcome this.

Microsoft Advertising | Manage ads | Campaign budgets
0 comments No comments

2 answers

Sort by: Most helpful
  1. MS Advertising - Marwa 0 Reputation points Microsoft External Staff Moderator
    2026-03-10T09:47:07.3466667+00:00

    Hello Claire,  

    Thank you for using our Microsoft Advertising Learn Q&A Platform!   

    I understand that you're facing a challenge with your Microsoft ads campaign as your Ads keep pausing.

    Since we will need more private details to be able to assist further, we'll need to revert this communication through private channels for privacy and security

    Our support teams are happy to discuss your account in more detail via phone, chat or email to provide review assistance, please see our support page to reach out!  If you have any additional questions, please do not hesitate to reach out to our support. I have also sent you a private message asking for further details. You are more than welcome to respond to me if you want to discuss things further.

    Kind regards, 

    Marwa | Microsoft Advertising Support Specialist | 800-518-5689

    0 comments No comments

  2. Q&A Assist
    2026-03-09T09:52:05.7066667+00:00
    AI generated content. This question contains an answer created with AI from Q&A Assist. Learn more

    Ads that pause every day are usually hitting their budget limit or a script/automation is disabling them.

    From the Microsoft Advertising side, two key mechanisms affect this:

    1. Campaign budget behavior
      • With a daily budget, Microsoft Advertising stops showing ads once the daily or calculated monthly budget is depleted.
      • The platform recalculates and enforces budgets automatically, and when the budget is depleted, the campaign is paused automatically.
      • Budgets reset and are recalculated based on the rules described in the budget documentation, but if the campaign has been paused due to budget depletion, it may remain paused until manually re-enabled or until whatever automation paused it is corrected.
    2. Scripts or automations that pause ads
      • Scripts can explicitly pause ads using ad.pause(). For example:
             var ads = AdsApp.ads()
                 .forDateRange("LAST_WEEK")
                 .withCondition("AdGroupName CONTAINS_IGNORE_CASE 'foo'")
                 .withCondition('Status = ENABLED')
                 .withCondition('Clicks < 5')
                 .get();
             
             while (ads.hasNext()) {
                 var ad = ads.next();
                 ad.pause();
             }
        
      • If any scripts or rules are configured to pause ads based on performance or spend, they may be pausing them and leaving them paused until manually re-enabled or until the script logic changes.

    To have ads serve again after a new day starts:

    • Ensure the daily budget is high enough that it is not fully depleted too early. If the daily or calculated monthly budget is exhausted, the campaign will pause automatically and not resume serving until the budget situation is corrected.
    • Verify that no scripts or automated rules are pausing ads or campaigns without a corresponding rule to re-enable them. If a script pauses ads, it must explicitly call enable() later if automatic reactivation is desired.

    There is no separate “auto-unpause at midnight” toggle; resumption depends on budget not being depleted and on no automation leaving ads or campaigns in a paused state.


    References:

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.