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

Was this helpful?

External Inventory Feed

Synchronization of external stock of products using XML feed

By using the feed, you can mass-adjust the amount of stock available from the external warehouse of already recorded products. If the same sku appears more than once in the feed, the value belonging to the last one is recorded.

Feeds are processed every day at 07:00 and 17:00 (UTC).

Send the completed feed url to support@webshippy.com.

Usable fields:

Field

Leírás

sku

Item number of the product.

stock

The quantity of available external stock of the product.

Sample feed:

<?xml version="1.0" encoding="utf-8"?>
<products>
  <product>
    <sku>shirt001</sku>
    <stock>30</stock>
  </product>
  <product>
    <sku>boot234</sku>
    <stock>15</stock>
  </product>
</products>

If it is necessary to connect an existing feed, then in addition to the same structure as above, it is also possible to use different field names, but a separate consultation is required for this!

If the XML file contains additional data in addition to the sku and stock fields, the additional information will not be processed.

PreviousTrack Info API

Last updated 2 years ago

Was this helpful?