Safety Stock

This page contains information about benefits, usage and context of the configurable safety stock

This page is outdated. Please go to our new documentation under https://docs.fulfillmenttools.com/documentation.

Introduction

Safety stock enables you to guard your offline sales against online-induced stockouts. It can be defined on facility level, and decreases the available stock levels ("available for picking" and "available on stock"). This means, if the stock level in a given facility is equal or less than the configured safety stock, the available stock is.

Quick Start

Users can configure the desired safety stock quantity for each listing. Configurations can be made in the stock overview. For more information, please refer to Stock Availabilities.

API Documentation

Get all Safety Stocks

get
Query parameters
sizenumber · min: 1 · max: 100OptionalDefault: 25
startAfterIdstringOptional
tenantArticleIdstringOptional
facilityRefstringOptional
Responses
200
Available Safety Stocks
application/json
get
GET /api/safetystocks HTTP/1.1
Host: 
Accept: */*
{
  "safetyStocks": [
    {
      "created": "2025-07-05T11:50:31.337Z",
      "facilityRef": "text",
      "id": "text",
      "lastModified": "2025-07-05T11:50:31.337Z",
      "tenantArticleId": "text",
      "value": 1,
      "version": 1
    }
  ],
  "total": 1
}

Update Safety Stocks in bulk

put
Body
Responses
207
Result of the bulk operations
application/json
put
PUT /api/safetystocks HTTP/1.1
Host: 
Content-Type: application/json
Accept: */*
Content-Length: 74

{
  "operations": [
    {
      "facilityRef": "text",
      "tenantArticleId": "text",
      "value": 1
    }
  ]
}
{
  "error": {
    "message": "text",
    "type": "VALIDATION"
  },
  "facilityRef": "text",
  "status": "UPDATED",
  "tenantArticleId": "text",
  "value": 1
}

Delete a single Safety Stock

delete
Path parameters
safetyStockIdstringRequired
Responses
200
Result of the bulk operations
delete
DELETE /api/safetystocks/{safetyStockId} HTTP/1.1
Host: 
Accept: */*

No content

Last updated

Was this helpful?