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 2 Next »

This method allows you to update the prices and costs of an inventory item in boxes.

Valid Tokens: Company.


Related Articles


Request


URL: https://api.kometsales.com/api/inventory.update

Method: POST

Content-Type: application/JSON


Input Parameters

authenticationToken (required)(string:50)

Sales security token.


inventoryId (required)(integer:20)

Inventory Item Line Id.


quantity (optional) (integer: 4)

Number of boxes to add to the inventory. 

The maximum number of boxes per line is 100 boxes.


unitCost (required)(decimal:10,3)

The cost per Unit according to unitType.


priceA (optional)(decimal:10,3)

The price A.


priceB (optional)(decimal:10,3)

The price B.


{
    "authenticationToken": "pfjup3eodu2p9sk729p7jsdl98",
    "inventoryId": 903359,
    "priceA": 4,
    "priceB": 7.919,
    "unitCost": 2.9888
}

Response


message (string:500)

Transaction status description.


status (integer:1)

Transaction status. 1 = Success | 0 = Failure


{
    "message": "The inventory Item has been updated successfully",
    "status": 1
}

  • No labels