Safety stock endpoints
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Query parameters
sizenumber · min: 1 · max: 100OptionalDefault:
25Example: 25startAfterIdstringOptional
tenantArticleIdstringOptional
facilityRefstringOptional
Responses
200
Available Safety Stocks
application/json
SafetyStocksPaginatedResult
totalnumberRequired
401
Your user is not allowed to operate against this API instance
application/json
403
Your user, although recognized, is not authorized to use this endpoint
application/json
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
}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
401
Your user is not allowed to operate against this API instance
application/json
403
Your user, although recognized, is not authorized to use this endpoint
application/json
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
}Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
safetyStockIdstringRequired
Responses
200
Result of the bulk operations
No content
401
Your user is not allowed to operate against this API instance
application/json
403
Your user, although recognized, is not authorized to use this endpoint
application/json
404
The requested entity was not found
application/json
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?

