Edit price item in product price list.
Endpoint
PUT /products/{id}/price-list/{priceId}Authentication
Required: Authorization header with valid token
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
id | string | Yes | Product unique identifier |
priceId | string | Yes | Price item unique identifier |
Request Body
{
"from": "number",
"price": "number"
}Required Fields
from- Range from which current pricing is defined (minimum: 1)price- The cost per unit of this product for this range (minimum: 0)
Response
Success
{
success: true
}Example Usage
curl -X PUT "https://integration-api.ram.syniotec.com/master-data/v1/product-management/products/123e4567-e89b-12d3-a456-426614174000/price-list/456e7890-e89b-12d3-a456-426614174000" \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"from": 5,
"price": 45.00
}'