v1

latestOpenAPI 3.0.02026-07-2455104.8 MB
Storage Location

List storage locations

This endpoint is only available as beta version and will introduce breaking changes without further notice or versioning. Returns all storage locations for the specified warehouse.

get/api/v1/warehouses/{warehouseId}/storageLocations

Path parameters

warehouseIdstring required

Resource identifier.

Example:17

ID of warehouse

Query parameters

numberstring required

Page number should be an integer greater than or equal to 1

sizestring required

Page size should usually be an integer between 10 and 50.

key'storageLocationId' | 'designation'
op'equals' | 'notEquals' | 'in' | 'notIn' | 'exactlyIn' | 'allIn' | 'allNotIn' | 'contains' | 'notContains' | 'startsWith' | 'endsWith' | 'greaterThan' | 'lessThan' | 'is' | 'lessThanOrEquals' | 'greaterThanOrEquals'

Response

Operation completed successfully.

Example response

{
  "data": [
    {
      "id": "1",
      "warehouse": {
        "id": "1"
      },
      "designation": "StorageLocation1",
      "description": "Storage Location Number 1",
      "project": {
        "id": "1"
      }
    }
  ],
  "extra": {
    "totalCount": 1,
    "page": {
      "number": 1,
      "size": 10
    }
  }
}