Skip to main content
PATCH
/
products
/
{productId}
Override product attributes
curl --request PATCH \
  --url https://api.simcel.io/master/v1/products/{productId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "status": "Discontinued",
  "moq": 200,
  "shelfLifeInDays": 365
}
'
{
  "success": true,
  "overrideId": "<string>",
  "appliedAt": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

productId
string
required

Query Parameters

workspaceId
string
required

The workspace ID to query master data from

Body

application/json
status
enum<string> | null
Available options:
Active,
Discontinued,
New
moq
number | null
shelfLifeInDays
integer | null
cartonsPerPallet
number | null
m3PerCarton
number | null
kgPerCarton
number | null
strategicSegment
string | null

Response

Override applied successfully

success
boolean
overrideId
string

Internal ID of the created/updated override record

appliedAt
string<date-time>