Sleekplan Logo
we run on Sleekplan

Magento to Dynamics 365 - Products & Prices

Sync product information (name, description, price, SKU, and inventory) from Magento to Dynamics 365. We have a Dynamics 365 connector (Request) 1. Use schedule trigger 2. Get product information from Magento 3. Go over products and create those in Dynamics 365. Update if those already exist. 4. On output state how many created, updated and if any errors occurred. Example API Calls: ```http GET /rest/V1/products Host: your-magento-store.com Authorization: Bearer your-magento-access-token Create/Update Product in Dynamics 365: ``` ```http POST /api/data/v9.1/products Host: your-dynamics-instance.api.crm.dynamics.com Authorization: Bearer your-dynamics-access-token Content-Type: application/json { "name": "Example Product", "description": "Example product description", "productnumber": "example-sku", "price": 29.99, "quantityonhand": 100 } ``` - origin: [GitHub](https://github.com/FrendsPlatform/FrendsTemplates/issues/93)