Hello,
so I am sending a post request to shopify admin API to create a new product. When i check the product in shopify, the product is created and everything looks good, but the price shows zero. There are no variants. just a single product.
This is the body of my request:
{
“product”:{
“title”:“test-product”,
“vendor”:“QUIM”,
“price”:60,
“status”: “draft”,
“product_type”:“VEST”,
}
}
Next, I tried double quotes around the price. still didn’t work.
Any ideas?
P.S. My api scope access does include products.
P.S. I am using zapier webhooks to send the post request
Thanks,