githubEdit

Storage locations

circle-info

Create storage location

circle-exclamation

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