Skip to main content

Update Item Selling Price

Endpoint: PUT /items/{id}/selling-price

Authentication: X-API-Key: {{apiKey}}

Path Parameters

NameTypeRequiredDescription
idstringYesUUID of the item to update selling price for

Headers

NameTypeRequiredDescription
AuthorizationstringYesX-API-Key for authentication. Format: X-API-Key: {{apiKey}}
Content-TypestringYesMust be application/json

Request Body

The request body must be a JSON object with the following structure:

FieldTypeRequiredDescription
itemCodestringYesUnique code identifying the item (e.g., "008")
unitPricestringYesNew selling price per unit as a string (e.g., "20")
currencystringYesISO 4217 currency code for the selling price (e.g., "USD")

Example Request Body

{
"itemCode": "008",
"unitPrice": "20",
"currency": "USD"
}