Recently we migrated the process from using AdWords to GoogleAds api as AdWords is sunsetting by the end of next month.
Previously, we could directly get the keywords search volume data from Google
but now we first ask Google to create and give us a
keywordPlan then we associate the keywords to the
keywordPlan and send it back to Google to get the keywords search volume data. (as exampled here:
https://developers.google.com/google-ads/api/docs/keyword-planning/generate-historical-metrics)
The problem started appearing from early this morning and we are not able to get search volume data from Google because we have exceeded 10,000 keywordPlans
and the limit is 10,000 per customer.
---------------------------------------------------------------------------------------------------------
error_code {
resource_count_limit_exceeded_error: RESOURCE_LIMIT
}
message: "This request would exceed a limit on the number of allowed resources. The details of which type of limit was exceeded will eventually be returned in ErrorDetails."
trigger {
string_value: "ENABLED_KP_PLANS_PER_USER_PER_CUSTOMER"
}
location {
field_path_elements {
field_name: "operations"
index: 0
}
}
details {
resource_count_details {
enclosing_id: "200947807"
limit: 10000
limit_type: KEYWORD_PLANS_PER_USER_PER_CUSTOMER
existing_count: 10000
enclosing_resource: "customer"
}
}
---------------------------------------------------------------------------------------------------------
My summary would be:
We are updating historical data for keywords on a regular basis and every time we update them we create a new keywordPlan and we've finally reached a point where we are no longer able to create a new keywordPlan as we are limited to have 10000 keywordPlans per customer.
How can we get this data without creating a keywordPlan then? the example (https://developers.google.com/google-ads/api/docs/keyword-planning/generate-historical-metrics) only shows the way with creating a keywordPlan.
Please let me know.