Storage locations
Create storage location
To create a storage location, create a facility first. Storage locations are always related to a specific facility.
To create a storage location where its contents are not available for sale, set the enabled property of the ACCESSIBLE trait to false. This configuration ensures stock at this location is not considered for incoming orders and cannot be picked.
POST https://{YOUR-TENANT-NAME}.api.fulfillmenttools.com/api/facilities/{facilityId}/storagelocations{
"tenantLocationId": "qa-location-01",
"name": "QA on Hold 01",
"type": "SINGLE_STORAGE",
"runningSequences": [],
"scannableCodes": [],
"traitConfig": [
{
"trait": "ACCESSIBLE",
"enabled": false
}
]
}Last updated