Storage Locations

Create a storage location

Creating a storage location with traits

In the following example we create a storage location without the ACCESSIBLE trait. This means that stock on this location will not be considered for incoming orders and cannot be picked.

curl -sSL -X POST 'https://your.api.fulfillmenttools.com/api/facilities/facility id>/storagelocations' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <TOKEN>' \
--data-raw '{
    "tenantLocationId": "qa-location-01",
    "name": "QA on Hold 01",
    "type": "SINGLE_STORAGE",
    "runningSequences": [],
    "scannableCodes": [],
    "traitConfig": [
        {
            "trait": "ACCESSIBLE",
            "enabled": false
        }
    ]
}'

Last updated