## Create Prices `products.create_prices(ProductCreatePricesParams**kwargs) -> ProductCreatePricesResponse` **post** `/api/v2/public/products/prices` Creates or updates product prices. ### Parameters - `body: Optional[Iterable[Body]]` - `price_id: str` Unique price identifier. - `product_number: str` The product number this price applies to. - `country_code: Optional[str]` - `price: Optional[float]` - `price_group: Optional[str]` - `price_quantity: Optional[float]` - `price_type: Optional[int]` - `price_unit: Optional[str]` - `store_number: Optional[str]` - `valid_from: Optional[Union[str, datetime]]` - `valid_to: Optional[Union[str, datetime]]` ### Returns - `class ProductCreatePricesResponse: …` Standard success response returned by mutation endpoints. - `data: Optional[str]` Optional data payload returned by the operation. - `message: Optional[str]` Human-readable message describing the result. - `success: Optional[bool]` Indicates whether the operation completed successfully. ### Example ```python import os from colleqtive_sdk import Colleqtive client = Colleqtive( bearer_token=os.environ.get("COLLEQTIVE_BEARER_TOKEN"), # This is the default and can be omitted ) response = client.products.create_prices() print(response.data) ```