> For the complete documentation index, see [llms.txt](https://help.fulfilleo.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.fulfilleo.solvenium.com/use-cases/order-acknowledgements.md).

# Order acknowledgements

Fulfilleo allows you to automate updates to order metafields without fulfilling the orders. This feature is useful for marking orders as accepted or rejected based on an acknowledgment file provided by your fulfiller.

<figure><img src="/files/x7G0Urnsp0lI0JK3oXDf" alt="Screenshot of a sample acknowledgment CSV file showing order numbers, status, and other fields that can be used for updating order metafields."><figcaption><p>Sample acknowledgment CSV file</p></figcaption></figure>

To process an acknowledgment file without marking the order as fulfilled:

1. Go to the **Data Mapping** section.
2. Delete the **Tracking Number** field.
3. Add the **Metafield** field (or multiple fields).
4. Select the metafield(s) to update and configure the mapping.

<figure><img src="/files/O0wBTlzOojbvEiD325t6" alt="Animated and annotated view of the Fulfilleo data mapping screen showing how an acknowledgment file is mapped to update order metafields without fulfilling the order"><figcaption><p>Fulfilleo data mapping for acknowledgment files, updating order metafields</p></figcaption></figure>

You can also use **Liquid** to transform values from the feed into a format that works best for your workflow.

```liquid
{%- if row['accepted'] == "Y" %}accepted{%- else %}rejected (code: {{ row['rejected_reason_code'] }}){%- endif %}
```

<figure><img src="/files/FNF3DfenOx9scTQfQGF7" alt="Fulfilleo data mapping screen showing a Liquid formula used to transform acknowledgment file values before updating order metafields"><figcaption><p>Fulfilleo data mapping using a Liquid formula for acknowledgment files</p></figcaption></figure>

<figure><img src="/files/NL8FB7qYhSmS3CmkeWKj" alt="Order details view showing a metafield updated from an acknowledgment file, with the value transformed using a Liquid formula"><figcaption><p>Order metafield updated using an acknowledgment file value converted with a Liquid formula</p></figcaption></figure>
