curl --request GET \
--url https://api.algure.com/v1/warehouses \
--header 'Authorization: Basic <encoded-value>'[
{
"name": "<string>",
"id": 123,
"code": "<string>",
"slug": "<string>",
"timezone": "<string>",
"countingWeekdays": [
123
],
"dailyProductCount": 123,
"countingTimeHour": 123,
"countingTimeMinute": 123,
"countingTimeOffset": 123,
"countingDurationHour": 123,
"bypassCountingSchedule": true,
"discrepancyThresholdStock": 123,
"discrepancyThresholdValue": 123,
"totalCountableProducts": 123
}
]Get a list of all warehouses within an organization.
curl --request GET \
--url https://api.algure.com/v1/warehouses \
--header 'Authorization: Basic <encoded-value>'[
{
"name": "<string>",
"id": 123,
"code": "<string>",
"slug": "<string>",
"timezone": "<string>",
"countingWeekdays": [
123
],
"dailyProductCount": 123,
"countingTimeHour": 123,
"countingTimeMinute": 123,
"countingTimeOffset": 123,
"countingDurationHour": 123,
"bypassCountingSchedule": true,
"discrepancyThresholdStock": 123,
"discrepancyThresholdValue": 123,
"totalCountableProducts": 123
}
]Use Integration API credentials as HTTP Basic auth (username: client id, password: client secret).
The warehouse list
Human-readable warehouse name
Warehouse internal numeric identifier
Unique warehouse code within an organization
URL-safe warehouse slug within an organization
IANA timezone used for warehouse schedules
Weekdays when counting is enabled (1-7)
Daily number of products expected to be counted
Counting start hour in local warehouse time
Counting start minute in local warehouse time
Additional schedule offset in hours
Counting session duration in hours
Whether counting schedule restrictions are bypassed
Stock threshold used to flag counting discrepancies
Value threshold used to flag counting discrepancies
Total products eligible for countings
Was this page helpful?