For the complete documentation index, see llms.txt. This page is also available as Markdown.

Safety stock endpoints

List safety stocks

get
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Query parameters
sizenumber · min: 1 · max: 100OptionalDefault: 25Example: 25
startAfterIdstringOptional
tenantArticleIdstringOptional
facilityRefstringOptional
Responses
200

Available Safety Stocks

application/json

SafetyStocksPaginatedResult

totalnumberRequired
get/api/safetystocks
GET /api/safetystocks HTTP/1.1
Host: your-tenant-name.api.fulfillmenttools.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "safetyStocks": [
    {
      "created": "2026-01-01T00:00:00.000Z",
      "facilityRef": "text",
      "id": "text",
      "lastModified": "2026-01-01T00:00:00.000Z",
      "tenantArticleId": "text",
      "value": 1,
      "version": 1
    }
  ],
  "total": 1
}

Update safety stocks

put
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body

SafetyStockBulkOperations

Responses
207

Result of the bulk operations

application/json

SafetyStockBulkOperationResult

facilityRefstringRequired
statusstring · enumRequiredPossible values:
tenantArticleIdstringRequired
valuenumberRequired
put/api/safetystocks
PUT /api/safetystocks HTTP/1.1
Host: your-tenant-name.api.fulfillmenttools.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 74

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

Delete safety stock

delete
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
safetyStockIdstringRequired
Responses
200

Result of the bulk operations

No content

delete/api/safetystocks/{safetyStockId}
DELETE /api/safetystocks/{safetyStockId} HTTP/1.1
Host: your-tenant-name.api.fulfillmenttools.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*

No content

Last updated

Was this helpful?