I want to use GenerateKeywordIdeasRequest by curl or Google Apps Script.
But I cannot find out this end point.
Please tell me the url.
data = {
"customer_id": myCustomerID,
"language": "jp",
"include_adult_keywords": "true",
"keyword_plan_network": "GOOGLE_SEARCH_AND_PARTNERS"
};
if(site_seed) {
data["site_seed"] = site_seed;
}
if(keyword_seed) {
data["keyword_seed"] = keyword_seed;
}
option = {
'method' : 'POST',
'headers' : {
'Authorization' : "Bearer " + myAccessToken,
'Content-Type' : 'application/json',
'developer-token' : myDeveloperToken,
'payload': JSON.stringify(data),
},
'muteHttpExceptions' : true
};