AI-generated Key Takeaways
-
A bidding strategy's status indicates its state, with
ENABLED
meaning active and other statuses indicating learning or configuration issues. -
The API exposes bidding strategy status on the
campaign
resource for both standard and portfolio strategies. -
You can fetch a campaign's bidding strategy status using a specific query that includes
campaign.bidding_strategy_system_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