Help connecting to Google Ad Manager CreativeService needed

Options

Hi community!

We need to capture the banner preview URL from Google Ad Manager. The field we need assetURL is not available in Google Ad Manager's report builder (so I can't use the Domo connector to pull it in as a GAM report), but based on the developer's documentation (https://developers.google.com/ad-manager/api/start) the code to access it viat the API is here (specifically SELECT asset.name, asset.image_asset.file_size, asset.image_asset.full_size.width_pixels, asset.image_asset.full_size.height_pixels, asset.image_asset.full_size.url FROM asset WHERE asset.type = 'IMAGE')

Our dev team has run into many issues trying to create custom script for this, and Google's team isn't very helpful. We're looking for any examples of how to connect to Google Ad Manager CreativeService. Do anyone have some that can be shared?

Best Answer

Answers

  • GrantSmith
    GrantSmith Coach
    Answer ✓
    Options

    Google typically has a really good Python packages which help to connect to their APIs. Has your dev team looked into using https://github.com/googleads/googleads-python-lib ?

    You could pair it with pydomo to upload the data into Domo.

    **Was this post helpful? Click Agree or Like below**
    **Did this solve your problem? Accept it as a solution!**
  • cthtcc
    Options

    Thanks @GrantSmith Our Web Dev Mgr was able to build a python script and then leverage Domo's CSV connector to pull the data in.