{
"product": 1,
"sort": "descend" // ADD IT LATER, NOTE: it could be either "ascend" or "descend" (as default).
}
The Sample API Request
Module name: Available storage bins of a product in a given source warehouse
Sample view: Request
List (in order) all the storage bins of a specified product which are available for transfer to other warehouses given the id of source warehouse.
** Request **
URL: "/api/warehouse/<id>/available-source-storage-bins/" where <id> represents the ID of warehouse.
Request Method: GET
Module name: Available storage bins of a product in a given source warehouse
Sample view: Request
List (in order) all the storage bins of a specified product which are available for transfer to other warehouses given the id of source warehouse.
** Request **
URL: "/api/warehouse/<id>/available-source-storage-bins/" where <id> represents the ID of warehouse.
Request Method: GET
4 Responses
Example:
"available_storage_bins": [
{
"storage_bin": 1,
"storage_bin_name": "Dock 1",
"available_quantity": 10000
}
],
Write a comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.