list_queries {adsDataHubR} | R Documentation |
Lists links between the specified customer and other Google advertising entities. Reference: <https://developers.google.com/ads-data-hub/reference/rest/v1/customers.analysisQueries/list>
list_queries(customer_id, token)
customer_id |
ADH Customer ID e.g. customers/123 |
token |
Access token retrived from function google_auth() |
A list of analysis queries run on the ADH customer account.
## Not run:
library(adsDataHubR)
token <- google_auth(client_id = client_id, client_secret=client_secret)
total_customers <- get_customers(token)
customer_id <- "customers/123456"
list_queries(customer_id, token)
## End(Not run)