Webshippy API EN
  • Introduction
  • Webshippy API Guide
    • Order API
    • Product API
    • Inventory Transfer API
    • External Inventory API
    • GetStock API
    • Get Brack History API
    • Create Bundle API
    • Marketplace Price Change API
    • Marketplace Transaction API
    • Shipping Mode API
    • Push API
    • Track Info API
  • External Inventory Feed
Powered by GitBook
On this page
  • Queryable data
  • Filtering conditions

Was this helpful?

  1. Webshippy API Guide

GetStock API

Bulk query of current product information in CSV format

Queryable data

Field
Description

sku

The product's SKU (article number).

quantity

The warehouse quantity of the product. (It includes the available inventory and the quantity reserved by order(s) as well.)

available_quantity

The available quantity of the product. (It does not include the quantity reserved by order(s).)

reserved_by_orders

The quantity reserved by order(s).

inventory_updated_at

Last update in the inventory.

available_external_quantity

Available external stock (1-3 days delivery).

immediate_quantity

The immediately available inventory.

Filtering conditions

Field
Description

inventoryUpdatedSince

The date of the last stock update.

In case of XML:

Url: https://app.webshippy.com/wspyapi/getStockInfoCsv/xml/

Request:

<request> 
  <apiKey>api-key-comes-here</apiKey>
  <inventoryUpdatedSince>2020-12-01 00:00:00</inventoryUpdatedSince>
</request>

In case of JSON:

Url: https://app.webshippy.com/wspyapi/getStockInfoCsv/json/

Request:

{
  "apiKey": "api-key-comes-here",
  "inventoryUpdatedSince": "2020-12-01"
} 
PreviousExternal Inventory APINextGet Brack History API

Last updated 3 years ago

Was this helpful?