Sticker

Add stickers

Stickers can be added on entities explicit at creation, like in this example for order creation:

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_EN": "Important"
            }
        }
    ],
    ...
}

Add stickers by tags

To add a sticker based on a tag, the configuration for this must be defined. The following entities have a tag-sticker-configuration:

Last updated