---
title: Products Delta Export (Last X Days)
description: How to export only products created or modified within the last X days in Shopware 6 for incremental synchronization.
---

Version 1.0.57 introduces **delta export support for products**, mirroring the previously available delta logic for orders.

You can now export only products that were:

- Created within the last X days
- Modified within the last X days

This enables incremental synchronization instead of full product exports.

## How It Works

When configuring a Product Export job, you can now:

1. Enable the delta filter.
2. Specify a relative time range (e.g., last 3, 7, or 30 days).
3. Choose whether to filter by:
    - Creation date
    - Modification date

The system uses the following Shopware fields:

- `createdAt`
- `updatedAt`

These fields determine whether a product qualifies for inclusion in the export.

![](/images/Product_export_X_days_ago.jpg)

## "Latest Created/Updated" Behavior

If you use the **"latest created/updated"** export mode:

- After each export execution,
- The product entity filter is automatically updated,
- So that the next export only includes newly created or modified products.

This ensures consistent delta behavior without manual intervention.

## Consistency with Orders Delta Export

The implementation follows the same logic and structure as the existing **orders delta export**, including:

- Relative date filtering
- Post-export filter update logic
- Scheduled job compatibility
- Consistent UI behavior

## Benefits

With Products Delta Export, you can:

- Reduce export file size
- Minimize system load
- Speed up external synchronization
- Avoid duplicate processing in third-party systems
- Maintain near real-time product updates

## Important Notes

- Date filtering relies strictly on `createdAt` and `updatedAt`.
- Behavior is fully aligned with the orders delta export logic.
- All new filters include proper i18n labels for multilingual environments.
