出价策略状态
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
出价策略的状态能够提醒您注意出价策略在任意指定时间点的状态。状态为 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 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2025-08-26。
[null,null,["最后更新时间 (UTC):2025-08-26。"],[[["\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"]]