Sleekplan Logo
we run on Sleekplan

Shopify to Salesforce - Orders

Sync order details (order ID, customer info, items, total price, order status) from Shopify to Salesforce. ```http GET /admin/api/2024-01/orders.json Host: your-store.myshopify.com X-Shopify-Access-Token: your-access-token ``` ```http POST /services/data/v57.0/sobjects/Order Host: your-salesforce-instance.salesforce.com Authorization: Bearer your-access-token Content-Type: application/json { "OrderNumber": "1001", "AccountId": "001xx000003DGbYAAW", "TotalAmount": 99.99, "Status": "New", "OrderItems": [ { "Product2Id": "01txx000000XQ1eAAG", "Quantity": 2, "UnitPrice": 49.99 } ] } ``` - origin: [GitHub](https://github.com/FrendsPlatform/FrendsTemplates/issues/99)