> For the complete documentation index, see [llms.txt](https://help.stockeo.solvenium.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.stockeo.solvenium.com/data-mapping/continue-selling-when-out-of-stock.md).

# Continue selling when out of stock

Stockeo offers a possibility to import the inventory policy for individual products and variants depending on the input feed.

In the Data Mapping section, open the Add field dropdown, and select "Continue selling when out of stock". Then specify the field in your product feed that determines whether out-of-stock purchases are allowed for particular items.

<figure><img src="/files/OeyWmE7mdEVlnK0uSQs8" alt=""><figcaption></figcaption></figure>

The "Continue selling when out of stock" field accepts the following values.

Positive values:

* continue, Continue, CONTINUE
* yes, Yes, YES
* true, True, TRUE
* 1

Negative values:

* deny, Deny, DENY
* no, No, NO
* false, False, FALSE
* 0

You can use a Liquid expression to convert unsupported values, or to specify a fixed value.

For example, when your feed contains a backorder field with one of the two values *allow*, and *disallow*:

```
{%- case backorder -%}
{%- when "allow" -%} continue
{%- when "disallow" -%} deny
{%- else -%} deny
{%- endcase -%}
```

To specify a fixed value:

```
{{ "yes" }}
```


---

# 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://help.stockeo.solvenium.com/data-mapping/continue-selling-when-out-of-stock.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.
