Creates or updates discount prices for products.
products.create_discount_prices(ProductCreateDiscountPricesParams**kwargs) -> ProductCreateDiscountPricesResponse
POST/api/v2/public/products/discountprices
Creates or updates discount prices for products.
Creates or updates discount prices for products.
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_discount_prices()
print(response.success){
"success": true,
"data": "data",
"message": "message"
}Returns Examples
{
"success": true,
"data": "data",
"message": "message"
}