## Create Prices `ProductCreatePricesResponse Products.CreatePrices(ProductCreatePricesParams?parameters, CancellationTokencancellationToken = default)` **post** `/api/v2/public/products/prices` Creates or updates product prices. ### Parameters - `ProductCreatePricesParams parameters` - `IReadOnlyList body` - `required string PriceID` Unique price identifier. - `required string ProductNumber` The product number this price applies to. - `string? CountryCode` - `Double Price` - `string? PriceGroup` - `Double? PriceQuantity` - `Int PriceType` - `string? PriceUnit` - `string? StoreNumber` - `DateTimeOffset ValidFrom` - `DateTimeOffset ValidTo` ### Returns - `class ProductCreatePricesResponse:` Standard success response returned by mutation endpoints. - `string? Data` Optional data payload returned by the operation. - `string? Message` Human-readable message describing the result. - `Boolean Success` Indicates whether the operation completed successfully. ### Example ```csharp ProductCreatePricesParams parameters = new(); var response = await client.Products.CreatePrices(parameters); Console.WriteLine(response); ```