I am trying to update a product's published status and can't seem to hide it. Using a PUT request with correct content type header. Using following code:
<product>
<id type="integer">90151305</id>
<published type="boolean">false</published>
</product>
This is for a private application using a test developer site I created Request sent to https://erdman-inc8711.myshopify.com/admin/products/90151305.xml
Not getting error returned (200 OK), getting the complete product xml returned but published-at element still shows a date in the response. In fact on further investigation, I can't update any of the product properties (Title, tags, body-html). Even if I send the request via RESTClient in Firefox, the product is not changed. I am able to change the product variant using exactly the same process. It used to work, I haven't changed anything in my code.
Thanks in advance, Brian