# External Inventory 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.&#x20;

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>
```

{% hint style="info" %}
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.
{% endhint %}
