Interested in sharing your feedback about the Google Ads API?
Sign up to be invited to participate in user research!
Bidding Strategy Status
A bidding strategy's status
calls attention to its state at any given point in time. A status of ENABLED
indicates an active strategy without any issues. Other values can indicate
whether an automated bidding strategy is still learning or surface misconfigured
settings.
Consult
bidding_strategy_system_status
for the full list of status codes and their meaning.
Read a campaign's bidding strategy status
While the API exposes status for both standard and portfolio bidding strategies,
it is currently only exposed on the campaign
resource,
so the status of portfolio strategies must be checked by querying a specific
campaign that uses it.
A bidding strategy's status is a campaign attribute and can be fetched with a
query similar to the following. Note that you can filter on a specific
bidding_strategy_system_status
value by adding an appropriate WHERE
clause
to the query.
SELECT
campaign.name,
campaign.status,
campaign.bidding_strategy_system_status
FROM campaign
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-01-28 UTC.
[null,null,["Last updated 2025-01-28 UTC."],[[["A bidding strategy's status reflects its current state, such as `ENABLED` for active or other values for learning or misconfiguration."],["`bidding_strategy_system_status` provides a comprehensive list of status codes and their meanings."],["Portfolio bidding strategies' status is accessed by querying a campaign using the strategy."],["A campaign's bidding strategy status can be retrieved through a query, which can be further filtered by specific `bidding_strategy_system_status` values."]]],[]]