Shopify CSV Change Review
Pricing
$0.50 / completed comparison
Shopify CSV Change Review
Review a proposed Shopify product CSV against an existing export before importing it. Get a change report and CSVs of detected issues and changes.
Shopify CSV Change Review
Pricing
$0.50 / completed comparison
Review a proposed Shopify product CSV against an existing export before importing it. Get a change report and CSVs of detected issues and changes.
You can access the Shopify CSV Change Review programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in API & Integrations in Apify Console.
1from apify_client import ApifyClient2
3# Initialize the ApifyClient with your Apify API token4# Replace '<YOUR_API_TOKEN>' with your token.5client = ApifyClient("<YOUR_API_TOKEN>")6
7# Prepare the Actor input8run_input = {9 "proposedCsv": """URL handle,Title,Description,Vendor,Option1 name,Option1 value,SKU,Price,Inventory quantity,Status10linen-shirt,Linen shirt,Lightweight everyday shirt,,Size,Small,SH-001-S,7.99,12,active11linen-shirt,,,,Size,M,SH-001-M,79.90,8,12canvas-tote,Canvas tote,Reusable cotton tote,North Studio,Title,Default Title,TB-010,0.00,40,draft13""",14 "currentCsv": """URL handle,Title,Description,Vendor,Option1 name,Option1 value,SKU,Price,Inventory quantity,Status15linen-shirt,Linen shirt,Lightweight everyday shirt,North Studio,Size,S,SH-001-S,79.90,12,active16linen-shirt,,,,Size,M,SH-001-M,79.90,8,17canvas-tote,Canvas tote,Reusable cotton tote,North Studio,Title,Default Title,TB-010,29.90,40,active18""",19 "mode": "update",20 "maxRows": 10000,21 "priceChangeThresholdPercent": 30,22 "expectedChangedColumns": [23 "Price",24 "Inventory quantity",25 ],26}27
28# Run the Actor and wait for it to finish29run = client.actor("mathe_carv/shopify-csv-change-review").call(run_input=run_input)30
31# Fetch and print Actor results from the run's dataset (if there are any)32print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")33for item in client.dataset(run.default_dataset_id).iterate_items():34 print(item)35
36# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-startThe Apify API client for Python is the official library that allows you to use Shopify CSV Change Review API in Python, providing convenience functions and automatic retries on errors.
Install the apify-client
$pip install apify-clientOther API clients include: