Introduction #
Why Sift? #
In Sello, data is received from your source system, such as a webshop, data feed, or ERP. This data must be transformed into the format required by various marketplaces. To facilitate this transformation, we’ve developed Sift, a specialized language designed to express these data conversions efficiently.
Basic concept #
At it’s core, Sift uses the functions sello
and src
to match fields in your source to fields in Sello. An example of a very basic Sift program can look like this:
sello "sku" = src("my webshop sku");
sello "color" = src("colour");
You will find available fields in Sello and your source on the setting page in Sello for updating your mapping. For more examples, see the example section.