Add price item to product price list.
Endpoint
POST /products/{id}/price-listAuthentication
Required: Authorization header with valid token
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
id | string | Yes | Product 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 POST "https://integration-api.ram.syniotec.com/master-data/v1/product-management/products/123e4567-e89b-12d3-a456-426614174000/price-list" \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"from": 5,
"price": 50.00
}'