import osfrom channel3_sdk import Channel3client = Channel3( api_key=os.environ.get("CHANNEL3_API_KEY"), # This is the default and can be omitted)price_history = client.price_tracking.get_history( canonical_product_id="canonical_product_id",)print(price_history.canonical_product_id)
import osfrom channel3_sdk import Channel3client = Channel3( api_key=os.environ.get("CHANNEL3_API_KEY"), # This is the default and can be omitted)price_history = client.price_tracking.get_history( canonical_product_id="canonical_product_id",)print(price_history.canonical_product_id)