Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using this PHP framework for use with Shopify's API

Can anyone help me with updating a product's variant attributes, specifically the inventory quantity?

The corresponding api call as listed in the Shopify docs is:

/admin/variants/#{id}.json

To update a product attribute such as the title it's a case of:

$fields = array('title' => 'My New Product Edit');

$api->product->modify(89605609, $fields);

Changing these to reflect a variant doesn't work in the same way.

As always, any help greatly appreciated.

share|improve this question

1 Answer

up vote 1 down vote accepted

The library you are using is deprecated. You should use one of the libraries mentioned here: http://wiki.shopify.com/Shopify_App_Development#.E2.80.9CI.E2.80.99m_a_PHP_developer.E2.80.9D

share|improve this answer
1  
Thanks, will use the current supported libraries – user1137277 Jun 19 '12 at 10:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.