Skip to content

Instantly share code, notes, and snippets.

@nmcspadden
Created October 19, 2016 03:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nmcspadden/07a7e243c6ee4bd36e20721a6f2d145a to your computer and use it in GitHub Desktop.
Save nmcspadden/07a7e243c6ee4bd36e20721a6f2d145a to your computer and use it in GitHub Desktop.
adobe_tools - Get Product List (public)
def get_product_list():
"""Get list of products."""
(config_data, jwt_token, access_token) = generate_config()
productlist = _product_list(config_data, access_token)
products = []
for product in productlist:
products.append(product['groupName'])
return products
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment