GET api/GetMinMaxEntireCatalogbyWarehouse?token={token}
Returns Min Max records for the entire catalog
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| token |
Token |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Returns an oject with a list of MinMaxx, "IsSuccess" boolean, and "Message" string.
MinMaxResult| Name | Description | Type | Additional information |
|---|---|---|---|
| IsSuccess | boolean |
None. |
|
| Message | string |
None. |
|
| ResultList | Collection of MinMaxDetail |
None. |
Response Formats
application/json, text/json
Sample:
{
"IsSuccess": true,
"Message": "sample string 2",
"ResultList": [
{
"Program": "sample string 1",
"PartNumber": "sample string 2",
"Description": "sample string 3",
"OnHandQuantity": 1,
"Minimum": 1,
"Maximum": 1,
"Warehouse": "sample string 4"
},
{
"Program": "sample string 1",
"PartNumber": "sample string 2",
"Description": "sample string 3",
"OnHandQuantity": 1,
"Minimum": 1,
"Maximum": 1,
"Warehouse": "sample string 4"
}
]
}
