Skip to main content

API - Update 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 updating products, rather than the standard approach.

To update a product in Mintsoft using a Custom API, use the POST method with the endpoint: /api/Product.


Fields You Can Update

  • SKU

  • Name

  • Description

  • Weight

  • LowStockAlertLevel

  • Height

  • Width

  • Depth

  • ImageURL

  • EAN

  • UPC

  • Price

  • CostPrice

  • PackingInstructions

  • CustomsDescription

  • UnNumber

  • InfiniteStock

  • UnitsPerParcel

  • AdditionalParcelsRequired

  • CommodityCodeId

  • BackOrder

  • CartonSizes

  • HasBatchNumber

  • HasExpiryDate

  • HasSerialNumber

  • CountryOfManufactureID


Example Request 1 – Update EAN and ImageURL

{  "ID": 168,  "EAN": "EAN123456",  "ImageURL": "https://om.mintsoft.co.uk/Images/NewImage.png"}

Example Request 2 – Update CommodityCode and CountryOfManufacture

{  "ID": 168,  "CommodityCode": {    "Code": "123456"  },  "CountryOfManufacture": {    "Code": "GB"  }}

Note: If you require the full list of all optional fields available for updating, refer to the Swagger link above.

Did this answer your question?