Sticker

A sticker is a visual indicator that can be attached to entities within fulfillmenttools to highlight important information. For example, a sticker can signal that an order is a high-priority shipment or requires special handling.

There are two primary methods for applying stickers to entities.

Adding stickers at entity creation

To add stickers directly to an entity at creation, include the stickers array in the request payload.

The following example demonstrates how to add a sticker during the creation of an order.

POST https://{YOUR-TENANT-NAME}.api.fulfillmenttools.com/api/orders

{
    "tenantOrderId": "A-57636-274",
    "orderLineItems": [
        ...
    ],
    "stickers": [
        {
            "key": "information",
            "priority": 100,
            "nameLocalized": {
                "de_DE": "Wichtig",
                "en_US": "Important"
            }
        }
    ],
    ...
}

Adding stickers via tags

Stickers can also be applied automatically based on an entity's tags. This functionality requires defining a tag-sticker-configuration for the relevant entity type.

These configurations are managed using the API. A tag-sticker-configuration can be defined for the following entities:

Last updated