Replies: 2 comments
-
Same problem here. |
Beta Was this translation helpful? Give feedback.
-
`import requests headers = { data = { response = requests.put(url=url, headers=headers, data=data) print(response.status_code) |
Beta Was this translation helpful? Give feedback.
-
Trying to create/update the listing attribute: "Room". (Which is a simple multi-select drop-down with values like "Bedroom", "Bathroom", "Kids", "Nursery" etc.
When calling the v3 api, only the last value of the value_ids is selected, what am I doing wrong?
--
Python code:
url = f"https://openapi.etsy.com/v3/application/shops/{v_shop_id}/listings/{v_listing_id}/properties/{v_property_id}"
--
after running the code only the "Bathroom" value is checked (was expecting both Bedroom and Bathroom)
When I change the order, eg. 'values':['Bathroom', 'Bedroom'] and its corresponding value_ids, only the "Bedroom" is checked in the drop down.
No error messages.
Any pointers to get this fixed?
Go4it, Rene
Beta Was this translation helpful? Give feedback.
All reactions