> For the complete documentation index, see [llms.txt](https://www.apidoc-en.webshippy.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://www.apidoc-en.webshippy.com/external-inventory-feed.md).

# 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 %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://www.apidoc-en.webshippy.com/external-inventory-feed.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
