Creates or updates product prices.
ProductCreatePricesResponse Products.CreatePrices(ProductCreatePricesParams?parameters, CancellationTokencancellationToken = default)
POST/api/v2/public/products/prices
Creates or updates product prices.
ProductCreatePricesParams parameters = new();
var response = await client.Products.CreatePrices(parameters);
Console.WriteLine(response);{
"success": true,
"data": "data",
"message": "message"
}Returns Examples
{
"success": true,
"data": "data",
"message": "message"
}