> 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/status.md).

# Status

Stockeo allows you to define the status of products processed by an automation. It supports all product statuses available in the current Shopify API version:

* **Active**
* **Draft**
* **Archived**
* **Unlisted**

You can decide whether to set the same status for all processed products using a fixed value, or to retrieve the status from a specific field in the feed.

<figure><img src="/files/gqXnaDDd9EddceZdVUsx" alt="Screenshot showing the fixed status settings for products in Stockeo"><figcaption><p>Fixed status settings in Stockeo</p></figcaption></figure>

<figure><img src="/files/cOSS9P3xRohQodbY3psW" alt="Screenshot showing how Stockeo maps product status values from the feed to Shopify"><figcaption><p>Stockeo mapping product status from the feed</p></figcaption></figure>

If the status values in the feed differ from those supported by Shopify, you can use a **Liquid formula** to convert them to valid Shopify statuses.

Assume the feed uses the value **`discontinued`** for products that should be archived in Shopify.

<figure><img src="/files/FdxcC4TJixQbJhaewKbX" alt="Screenshot showing example product status values as provided in the feed"><figcaption><p>Sample product statuses from the feed</p></figcaption></figure>

In this case, you can apply the following Liquid formula to convert the feed value to a Shopify-supported status:

```liquid
{{ ['Product Status'] | replace: "discontinued","archived" }}
```

<figure><img src="/files/sAYi8FQdTZOdyWmmSAa2" alt="Screenshot showing a Liquid formula in Stockeo used to convert product status values from the feed to Shopify-supported statuses"><figcaption><p>Stockeo Liquid formula to convert product status</p></figcaption></figure>
