> 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="https://2071801931-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fz6HyRe5TyFXHKQEybH7n%2Fuploads%2Fgit-blob-e7d0459ece347f0a07b43864dc7cf486f543914b%2Fstockeo-fixed-product-status.png?alt=media" alt="Screenshot showing the fixed status settings for products in Stockeo"><figcaption><p>Fixed status settings in Stockeo</p></figcaption></figure>

<figure><img src="https://2071801931-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fz6HyRe5TyFXHKQEybH7n%2Fuploads%2Fgit-blob-b3f75d009a09166ccfd046dcfcce72725d57f736%2Fimage.png?alt=media" 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="https://2071801931-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fz6HyRe5TyFXHKQEybH7n%2Fuploads%2Fgit-blob-02354abc16bf5a049c731c79674e79000d2d8f13%2Fimage.png?alt=media" 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="https://2071801931-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fz6HyRe5TyFXHKQEybH7n%2Fuploads%2Fgit-blob-ee2e735aa836e30bd684018340b14a81e71e1885%2Fimage.png?alt=media" 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>
