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

# External Inventory Feed

Feed használatával tömegesen beállítható a már rögzített termékek külső raktárról elérhető készletének mennyisége. Ha többször szerepel a feed-ben ugyanaz az sku, akkor az utoljára szereplőhöz tartozó érték kerül rögzítésre.&#x20;

A feed-ek feldolgozása minden nap 7 és 17 órakor (UTC) történik.

Az elkészült feed elérhetőségét a <support@webshippy.com> címre várjuk.

#### Használható mezők:

| Mező    | Leírás                                      |
| ------- | ------------------------------------------- |
| `sku`   | A termék cikkszáma.                         |
| `stock` | A termék elérhető külső készlet mennyisége. |

#### Minta 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" %}
Amennyiben már meglévő feed bekötésére van szükség, akkor a fentivel egyező struktúra mellett lehetőség van eltérő mezőnevek használatára is, viszont erre vonatkozóan külön egyeztetés szükséges!

Ha az XML állomány az sku és stock mezőkön kívül további adatokat is tartalmaz, akkor a többlet információk nem kerülnek feldolgozásra.
{% 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, and the optional `goal` query parameter:

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

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
