GET api/GetMinMaxEntireCatalogbyWarehouse?token={token}

Returns Min Max records for the entire catalog

Request Information

URI Parameters

NameDescriptionTypeAdditional 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
NameDescriptionTypeAdditional information
IsSuccess

boolean

None.

Message

string

None.

ResultList

Collection of MinMaxDetail

None.

Response Formats

application/json, text/json

Sample:
{
"IsSuccess": true,
"Message": null,
"ResultList": [
{
"PartNumber": "4AL713",
"InventoryType": "NEW",
"Quantity": 1,
"Warehouse": "WHTest",
"Program": "Test"
},
{
"PartNumber": "4AT057",
"InventoryType": null,
"Quantity": 0,
"Warehouse": null,
"Program": "Test"
}
]
}