Hi,
I’ve spent hours trying to figure out why requests isn’t working for put. I’m posting here as i’m totally stuck.
I get 200OK but the response shows an unchanged product/variant/
Can I get help on this please?
My goal is to change price/sku according to the json provided.
X-Request-ID’: ‘43a42d0f-75e0-4aee-b90c-fd5800e72940’
import requests
headers = {"X-Shopify-Access-Token": "{token}","Content-Type": "application/json"}
data={"product":{"id":8077722714417,"title":"Default Title","variants":[{"id":44193894662449,"price":"1200.00","sku":"kdkfjdskfd"}]}}
api_url = f"https://{website.com}/admin/api/2022-10/products/8077722714417.json"
res = requests.put(api_url,json=data, headers=headers,allow_redirects=True)
print(res)
print(res._content)
As you can see, below response is what i get and it doesn’t show an updated price (expecting 1200.00 but got 120.00).
<Response [200]>
b'{"product":{"id":8077722714417,"title":"Default Title","body_html":"Description","vendor":"SanDisk","product_type":"Memory Card","created_at":"2022-12-08T18:27:34+11:00","handle":"sandisk-ultra-sdxc-sdunc-256gb-c10-uhs-i-150mb-s-r-4x6-10y","updated_at":"2022-12-08T23:39:57+11:00","published_at":"2022-12-08T18:27:34+11:00","template_suffix":null,"status":"active","published_scope":"web","tags":"Memory Card","admin_graphql_api_id":"gid:\\/\\/shopify\\/Product\\/8077722714417","variants":[{"id":44193894662449,"product_id":8077722714417,"title":"Default Title","price":"120.00","sku":"Updating the Product SKU","position":1,"inventory_policy":"deny","compare_at_price":null,"fulfillment_service":"manual","inventory_management":"shopify","option1":"Default Title","option2":null,"option3":null,"created_at":"2022-12-08T18:27:34+11:00","updated_at":"2022-12-08T23:39:57+11:00","taxable":true,"barcode":null,"grams":0,"image_id":null,"weight":0.0,"weight_unit":"kg","inventory_item_id":46241507606833,"inventory_quantity":100,"old_inventory_quantity":100,"requires_shipping":true,"admin_graphql_api_id":"gid:\\/\\/shopify\\/ProductVariant\\/44193894662449"}],"options":[{"id":10257447584049,"product_id":8077722714417,"name":"Title","position":1,"values":["Default Title"]}],"images":[],"image":null}}'