Sleekplan Logo
we run on Sleekplan

Shopify to Salesforce - Products & Prices

Sync product information (name, description, price, SKU, and inventory) from Shopify to Salesforce. ```http GET /admin/api/2024-01/products.json Host: your-store.myshopify.com X-Shopify-Access-Token: your-access-token ``` ```http POST /services/data/v57.0/sobjects/Product2 Host: your-salesforce-instance.salesforce.com Authorization: Bearer your-access-token Content-Type: application/json { "Name": "Example Product", "SKU__c": "example-sku", "Description": "Example product description", "Price__c": 29.99, "Inventory__c": 100 } ``` - origin: [GitHub](https://github.com/FrendsPlatform/FrendsTemplates/issues/97)