Starting with Version 1.3 of our WooCommerce Multi Inventory Plugin we offer a built in REST API functionality. This allows vendors or other customers to fetch multi inventory stocks, locations and more.

REST API Base

The Base for all multi inventory calls of our API is “/wc/multi-inventory/v1/”. A full call would include also your site URL and wp-json of course.

This is an example full base:

https://www.YOURDOMAIN.COM/wp-json/wc/multi-inventory/v1/inventories?consumer_key=YOUR_KEY&consumer_secret=YOUR_KEY

Get Inventories

The first REST API Call is to get all inventory locations.

/wp-json/wc/multi-inventory/v1/inventories

Get Product Inventory Stocks

To get the inventory stock data for a product you can use the stock call. Parameters for the call are: sku or product_id. Example:

/wp-json/wc/multi-inventory/v1/stock?sku=123

Parameters:

sku OR product_id

Update Product Inventory Stocks

To update a product with inventory stock information use the stock call as POST.

/wp-json/wc/multi-inventory/v1/stock?stock=5&sku=123&inventory=71

Parameters:

stock
sku OR product_id inventory (inventory id)

Get Inventory Orders

If you need all orders by inventory ID, use the orders call. Parameter is inventory (containing your inventory ID).

/wp-json/wc/multi-inventory/v1/orders?inventory=71

7 thoughts on “WooCommerce Multi Inventory REST API

  1. Ben P says:

    Hi, I noticed that the first variable should be stock rather than inventory. Also this needs to be secured so that it is not abused.
    /wp-json/wc/multi-inventory/v1/stock?stock=5&sku=123&inventory=71

    • Daniel
      Daniel acts as a real person and passed all tests against spambots. Anti-Spam by CleanTalk.
      says:

      Thanks for the information. We corrected the REST API FAQ now. For security, all requests require a REST API Authorization via consumer secret.

    • Daniel
      Daniel acts as a real person and passed all tests against spambots. Anti-Spam by CleanTalk.
      says:

      Well currently we only support stock updates via API, but we can customize / add this feature for you on Charge. Contact us at [email protected]

      • Sam Watson says:

        Can you please provide a update for this.. As the Price as per inventory feature is there in plugin and it should be availbale in restapi as well.

  2. Mitch says:

    Hi,

    Is there a way to update the stock quantity for multiple inventories with a single call? That functionality would be great.

    Thanks!

Leave a Reply

Your email address will not be published. Required fields are marked *