Skip to main content

API - Create products

Tom Higgs avatar
Written by Tom Higgs
Updated over 2 months ago

This guide is intended for customers with custom-built third-party API integrations. It provides an additional method for creating products, rather than the standard approach.

To create a new product on Mintsoft using a Custom API you can use the /api/Product - PUT method. The API call allows you to include all necessary information to create the product on Mintsoft.

Example

{  "SKU": "MY-TSHIRT-BLUE-S",  "Name": "MY TSHIRT BLUE SMALL",  "CustomsDescription": "Cotton Tshirt",  "EAN": "3546433",  "UPC": "643636346",  "LowStockAlertLevel": 20,  "Weight": 1,  "Height": 40,  "Width": 20,  "Depth": 1,  "ImageURL": "https://www.mywebsite.com/BlueTshirt.png", }
Did this answer your question?