Endpoint
GET /products/price-lists/standardAuthentication
Required: Authorization header with valid token
Query Parameters
| Parameter | Type | Required | Description | Example |
|---|---|---|---|---|
productId | string | No | Filter by product id | e433b04a-2b4d-419a-accc-f1ada3f55b15 |
type | string (enum) | No | Filter by product type (EQUIPMENT, PERSON, SERVICE, INVENTORY) | EQUIPMENT |
page | number | No | Page number (default: 1, min: 1) | 1 |
limit | number | No | Items per page (default: 20, min: 0) | 50 |
Success
{
"content": ["PriceList"],
"total": "number"
}Response Field Descriptions:
content- Array of PriceListtotal- Total number of items matching the filter
Data Models & Schemas
PriceList
{
"id": "string (UUID)",
"productId": "string (UUID)",
"productTitle": "string",
"productNumber": "string",
"from": 1,
"productUnit": "string",
"standardPrice": 100,
"children": ["PriceList"]
}Fields Descriptions
id- Unique identifier of the standard price list entryproductId- ID of the associated productproductTitle- Title of the productproductNumber- Product number identifierfrom- Quantity range start for this pricing tierproductUnit- Unit of measurement for the productstandardPrice- Standard (base) price for this tierchildren- Additional pricing tiers for the same product (nested entries withfrom> 1)
Example Usage
curl -X GET "https://integration-api.ram.syniotec.com/master-data/v1/product-management/products/price-lists/standard" \
-H "Authorization: Bearer YOUR_TOKEN"