Thanks Matt, i wanted to know that I m using the below api to fetch all the keyword planner for the particular ad account/customer account but it only gives list of keyword plans "created by you" and not "shared with you"
import requests import json url = "https://googleads.googleapis.com/v8/customers/1234567890/googleAds:search" payload = json.dumps({ "query": "SELECT keyword_plan.name, keyword_plan.forecast_period, keyword_plan.id FROM keyword_plan " }) headers = { 'Content-Type': 'application/json', 'Authorization': 'Bearer xxxxx', 'developer-token': '-dev token', 'login-customer-id': 'xxxx' } response = requests.request("POST", url, headers=headers, data=payload) print(response.text) IS THERE ANYWAY TO LIST ALL THE KEYWORD PLANS i.e both PLAN CREATED BY YOU and PLAN SHARED WITH YOU ? On Thursday, October 7, 2021 at 3:15:04 AM UTC+5:30 adsapi wrote: > Hello, > > Although this is not possible through the Ads API, it may be possible > programmatically modify video ad groups using Ads scripts > <https://developers.google.com/google-ads/scripts/docs/reference/adsapp/adsapp_videoadgroup>. > > However, our team specializes in the Ads/AdWords API, so for further > assistance on this, I would recommend reaching out to the scripts > dedicated forum <https://groups.google.com/g/adwords-scripts>. > > Regards, > Matt > Google Ads API Team > > [image: Google Logo] > Matt > Google Ads API Team > > > ref:_00D1U1174p._5004Q2OTkP6:ref > -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogspot.com/ =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message because you are subscribed to the Google Groups "AdWords API and Google Ads API Forum" group. To post to this group, send email to adwords-api@googlegroups.com To unsubscribe from this group, send email to adwords-api+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/adwords-api?hl=en --- You received this message because you are subscribed to the Google Groups "AdWords API and Google Ads API Forum" group. To unsubscribe from this group and stop receiving emails from it, send an email to adwords-api+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/adwords-api/9b31f81c-8e50-4080-9991-c542146ee253n%40googlegroups.com.