Storage locations

For detailed information, refer to the Storage Location endpoint in the REST API Reference.

Create storage location

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