Is there a way to get sessiondetails/conversiondetails with the Shopify api
its not in the order details / conversion details
API_KEY = "xxxx"
PASSWORD = "xxx"
shop_url = "https://{}:{}@xxx.myshopify.com/admin/".format(API_KEY, PASSWORD)
shopify.ShopifyResource.set_site(shop_url)
orders = shopify.Order.find(status='closed') # open, closed, cancelled, any
for order in orders:
print(order.to_json())

