Hey everyone!
Just a heads up that Klipfolio is updating the Shopify API to version 2022-07 during the week of Nov 4, 2022.
Our records indicate that there are some data sources and Klips using a field which will be deprecated and no longer available in this version of the Shopify API.
From Shopify: https://shopify.dev/changelog/property-deprecations-in-the-admin-api-order-and-lineitem-resource
The following object property on the REST Admin API's Order resource is deprecated:
total_price_usd
Klipfolio will migrate data sources and Klip schemas who are using the deprecated option
total_price_usd will be replaced with total_price
For example, the data source query:
https://<yourShopName>.myshopify.com/admin/orders.json?created_at_min={date.add(-30).format()}&created_at_max={date.add(1).format()}&fields=created_at,id,name,total_price_usd,referring_site,order_number,line_items,financial_status&status=any&financial_status=paid&limit=250
Will be changed to
https://<yourShopName>.myshopify.com/admin/orders.json?created_at_min={date.add(-30).format()}&created_at_max={date.add(1).format()}&fields=created_at,id,name,total_price,referring_site,order_number,line_items,financial_status&status=any&financial_status=paid&limit=250
If you have any questions, please ask them here, or contact Support.