Creates or updates submitted product free fields. Existing keys not included in the request are unchanged.
products.create_product_free_fields(ProductCreateProductFreeFieldsParams**kwargs) -> ProductCreateProductFreeFieldsResponse
POST/api/v2/public/products/freefields
Creates or updates submitted product free fields. Existing keys not included in the request are unchanged.
Creates or updates submitted product free fields. Existing keys not included in the request are unchanged.
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_product_free_fields()
print(response.success){
"success": true,
"data": "data",
"message": "message"
}Returns Examples
{
"success": true,
"data": "data",
"message": "message"
}