Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 8 Next »

Overview

This method allows you to update an existing product in Komet Sales. 

Request

https://api.kometsales.com/api/product.update

  • Method: POST
  • Content-Type: application/json

Input Parameters:

  • authenticationToken (required)(string:50): Komet Sales security token.
  • productId (required)(integer:20): Komet Sales internal ID of the product that you want to update. You can obtain this value from the product.list API method.
  • category (required)(string:200): name of the product category.
  • color (optional)(string:100): product color.
  • variety (optional)(string:100): product variety. 
  • grade (optional)(string:100): product grade.
  • code (optional)(string:20): product code.
  • active (optional)(boolean:1): 1 if the product is active, 0 if the product is not active.
  • regionsOfOrigin (optional)(array): list of regions where the product comes from. 
  • productRollUpCode (optional) (string:20): Code of the rollup product. When this item is transferred to the units inventory it will be changed to the roll up item specified here.
  • defaultUnitType (optional(string:10): Default unit type of the product. Stem or Bunch. 


Note: At least one of these fields is required: Variety, Color, Grade. 


Sample
{
  "authenticationToken": "token_info_goes_here",
  "productId": 234234,
  "category": "Rose",
  "color": "Red",
  "variety": "Freedom",
  "grade": "50 cm",
  "code": "RS50", 
  "regionsOfOrigin" : [ "Africa","Quito" ],
  "active": 1
  
 }

Response

Output:

  • status (integer:1): transaction status. 1 for success or 0 for failure.
  • message (string:500): description of the status of the transaction.
  • productId (integer:20): product internal ID that was just updated.

Sample
 {
  "status": "1",
  "message": "The product was successfully saved.",
  "productId": 234234
 }
  • No labels