Storage locations

To create a storage location, create a facility first. Storage locations are always related to a specific facility.

More Storage-Location-API information can be found here: REST API documentation - Storage Location

Create storage location

We create a disabled storage location with the ACCESSIBLE trait. This means that stock on this location will not be 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