कैंपेन का बजट हटाना
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
किसी बजट को हटाने से पहले, पक्का करें कि उसका इस्तेमाल कोई ENABLED
या PAUSED
कैंपेन न कर रहा हो. इसके लिए, reference_count
पर जाएं.
अगर यह फ़ील्ड 0 से ज़्यादा है, तो इसका मतलब है कि ENABLED
या PAUSED
कैंपेन अब भी बजट का इस्तेमाल कर रहे हैं. इस जानकारी को पाने के लिए, मुख्य रिसॉर्स के तौर पर campaign_budget
वाली मेट्रिक खोजें. यहां किसी बजट के रेफ़रंस की गिनती के लिए, उसके आईडी के हिसाब से फ़िल्टर करने वाली GAQL क्वेरी दी गई है:
SELECT campaign_budget.reference_count
FROM campaign_budget
WHERE campaign_budget.id = campaign_budget_id
यह पता चलने के बाद कि CampaignBudget
का अब इस्तेमाल नहीं किया जा रहा है और उसे हटाया जा सकता है, कैंपेन बजट के रिसॉर्स के नाम के साथ remove
ऑपरेशन भेजें.
किसी कैंपेन को हटाने पर, उस कैंपेन में इस्तेमाल किया जा रहा ऐसा बजट भी हट जाता है जो शेयर नहीं किया गया है.
जब तक कुछ अलग से न बताया जाए, तब तक इस पेज की सामग्री को Creative Commons Attribution 4.0 License के तहत और कोड के नमूनों को Apache 2.0 License के तहत लाइसेंस मिला है. ज़्यादा जानकारी के लिए, Google Developers साइट नीतियां देखें. Oracle और/या इससे जुड़ी हुई कंपनियों का, Java एक रजिस्टर किया हुआ ट्रेडमार्क है.
आखिरी बार 2025-08-26 (UTC) को अपडेट किया गया.
[null,null,["आखिरी बार 2025-08-26 (UTC) को अपडेट किया गया."],[[["\u003cp\u003eBefore removing a budget, ensure no active or paused campaigns are using it by checking its \u003ccode\u003ereference_count\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eIf the \u003ccode\u003ereference_count\u003c/code\u003e is greater than 0, retrieve information using a GAQL query with \u003ccode\u003ecampaign_budget\u003c/code\u003e as the main resource.\u003c/p\u003e\n"],["\u003cp\u003eTo remove an unused \u003ccode\u003eCampaignBudget\u003c/code\u003e, send a \u003ccode\u003eremove\u003c/code\u003e operation with the resource name of the campaign budget.\u003c/p\u003e\n"],["\u003cp\u003eRemoving a campaign also removes any non-shared budget associated with it.\u003c/p\u003e\n"]]],[],null,["# Remove a Campaign Budget\n\nBefore removing a budget, ensure that no\n[`ENABLED`](/google-ads/api/reference/rpc/v21/CampaignStatusEnum.CampaignStatus#enabled) or\n[`PAUSED`](/google-ads/api/reference/rpc/v21/CampaignStatusEnum.CampaignStatus#paused) campaigns\nare using it by checking its\n[`reference_count`](/google-ads/api/reference/rpc/v21/CampaignBudget#reference_count).\nIf this field is greater than 0, there are `ENABLED` or `PAUSED` campaigns still\nusing the budget. You can retrieve this information by searching for metrics\nwith `campaign_budget` as the main resource. Here is the GAQL query for the\nreference count of a budget, filtering on its ID: \n\n SELECT campaign_budget.reference_count\n FROM campaign_budget\n WHERE campaign_budget.id = \u003cvar translate=\"no\"\u003e\u003cspan class=\"devsite-syntax-n\"\u003ecampaign_budget_id\u003c/span\u003e\u003c/var\u003e\n\nOnce you've determined that a [`CampaignBudget`](/google-ads/api/reference/rpc/v21/CampaignBudget)\nis no longer used and can be removed, send a\n[`remove`](/google-ads/api/reference/rpc/v21/CampaignBudgetOperation#remove)\noperation with the resource name of the campaign budget.\n\nWhen removing a campaign, you're also removing any non-shared budget being\nused by that campaign."]]