入札戦略のステータス
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
入札戦略のステータスは、その時々の入札戦略の状態を示します。ステータスが ENABLED
の場合は、問題なく有効な戦略であることを示します。他の値は、自動入札戦略がまだ学習中かどうかを示したり、設定の誤りを明らかにしたりします。
ステータス コードとその意味の完全なリストについては、bidding_strategy_system_status
をご覧ください。
キャンペーンの入札戦略のステータスを取得する
API は標準入札戦略とポートフォリオ入札戦略の両方のステータスを公開しますが、現時点では campaign
リソースでのみ公開されています。そのため、ポートフォリオ戦略のステータスを確認するには、その戦略を使用する特定のキャンペーンをクエリする必要があります。
入札戦略のステータスはキャンペーン属性であり、次のようなクエリで取得できます。クエリに適切な WHERE
句を追加することで、特定の bidding_strategy_system_status
値でフィルタできます。
SELECT
campaign.name,
campaign.status,
campaign.bidding_strategy_system_status
FROM campaign
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-08-26 UTC。
[null,null,["最終更新日 2025-08-26 UTC。"],[[["\u003cp\u003eA bidding strategy's status reflects its current state, such as \u003ccode\u003eENABLED\u003c/code\u003e for active or other values for learning or misconfiguration.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003ebidding_strategy_system_status\u003c/code\u003e provides a comprehensive list of status codes and their meanings.\u003c/p\u003e\n"],["\u003cp\u003ePortfolio bidding strategies' status is accessed by querying a campaign using the strategy.\u003c/p\u003e\n"],["\u003cp\u003eA campaign's bidding strategy status can be retrieved through a query, which can be further filtered by specific \u003ccode\u003ebidding_strategy_system_status\u003c/code\u003e values.\u003c/p\u003e\n"]]],[],null,["# Bidding Strategy Status\n\nA [bidding strategy's status](//support.google.com/google-ads/answer/6263057)\ncalls attention to its state at any given point in time. A status of `ENABLED`\nindicates an active strategy without any issues. Other values can indicate\nwhether an automated bidding strategy is still learning or surface misconfigured\nsettings.\n\nConsult\n[`bidding_strategy_system_status`](/google-ads/api/fields/v21/campaign#campaign.bidding_strategy_system_status)\nfor the full list of status codes and their meaning.\n\nRead a campaign's bidding strategy status\n-----------------------------------------\n\nWhile the API exposes status for both standard and portfolio bidding strategies,\nit is currently only exposed on the [`campaign`](/google-ads/api/fields/v21/campaign) resource,\nso the status of portfolio strategies must be checked by querying a specific\ncampaign that uses it.\n\nA bidding strategy's status is a campaign attribute and can be fetched with a\nquery similar to the following. Note that you can filter on a specific\n`bidding_strategy_system_status` value by adding an appropriate `WHERE` clause\nto the query. \n\n SELECT\n campaign.name,\n campaign.status,\n campaign.bidding_strategy_system_status\n FROM campaign"]]