Operative container types
Creating an operative container type
POST https://{YOUR-TENANT-NAME}.api.fulfillmenttools.com/api/operativecontainertypes{
"nameLocalized": {
"de_DE": "Standardbox M",
"en_US": "Standard Box M"
},
"descriptionLocalized": {
"de_DE": "Eine mittelgroße Box für Standardversand.",
"en_US": "A medium-sized box for standard shipping."
},
"iconUrl": "https://example.com/icon.png",
"priority": 5,
"dimensions": {
"heightInCm": 50,
"lengthInCm": 100,
"weightInG": 1700,
"widthInCm": 25.5
},
"weightLimitInG": 2500,
"allowedOperativeTypes": [
"PICKING",
"PACKING_TARGET"
],
"scannableIdentifiers": [
{
"searchType": "CONTAINS",
"identifiers": [
"BOX-M"
]
}
],
"icon": {
"content": "<base64-encoded-data>",
"name": "example.pdf"
}
}Last updated