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


---

# Agent Instructions: 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/status.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.
