I'm currently using the Google Ads API's REST interface and see there's a method to fetch an individual customer's userList via the following endpoint.
GET
https://googleads.googleapis.com/v8/{resourceName=customers/*/userLists/*}I'm wondering if there's a similar method to fetch a list of all customer's current userLists? I only need their ID's but I'm not seeing anything in the documentation.
I see a method to retrieve all userLists using
this Scripts snippet. Is there a way that I can leverage this script programmatically via a rest API request? Unfortunately, the request must be via the Google Ads API's REST interface as there currently isn't a Golang client available.
Any help is greatly appreciated, thanks!