python-shopee icon indicating copy to clipboard operation
python-shopee copied to clipboard

We want to include all mandatory attributes.

Open himacri opened this issue 4 years ago • 2 comments
trafficstars

Hey everyone.

With the recent update, the required fields have changed depending on the category. I would like to add attributes.

For example, for action figures in the Philippines (category no. 101386), "Brand" and "Bundle Set" are required.

My current settings are as follows: I can set the Brand, but I can't set the Bundle Set properly. Please let me know the correct code.

            attributesPH = [{
                "attributes_id" : 0,
                "value" : "NoBrand",
                ********************* ← I want to know how to set up the {"Bundle Set" : "No",}
            }]

Thank you all for your help.

himacri avatar Sep 12 '21 12:09 himacri

By the way, the following did not succeed.

           attributesPH = [{
                "attributes_id" : 0,
                "value" : "NoBrand",
                "Bundle_Set" : "No",
            }]

himacri avatar Sep 12 '21 12:09 himacri

Hi, I just reached this answer. attributesPH = [ { "attributes_id" : 100391, "value" : "No", }, { "attributes_id" : 0, "value" : "NoBrand", } ]

himacri avatar Sep 25 '21 10:09 himacri