api/MultipleLocation/Query (POST)

Queries existing Multiple Locations using the provided query data.
HTTP Method: POST
Required Fields: At least one field as search criteria
Requires an Authentication Token in the AuthToken HTTP header. Authentication Tokens are obtained from api/Security/Login (POST).
Returns all found Multiple Locations.

Request Information

Parameters

NameDescriptionAdditional information
RequestData
This is a JSON object containing Multiple Location query data.

Query Single Multiple Location Using Key Fields Example:
{
  "STORES_CODE": "MS",
  "PART_ID": "MOTOR003",
  "STOCK_LOCATION": "ISLE 5/SHELF 2"
}
Returns 1 Multiple Location if successful.
This is like 'Find' in Expandable.

Query Multiple Multiple Locations Using Other Fields Example:
{
  "DATE_LAST_ACT": "6/24/2015"
}
Returns 1 or more Multiple Locations if successful.
This is like 'QBE' in Expandable.

Query Multiple Multiple Locations Using QBE Conditional Notation Example:
{
  "ON_HAND_QTY": "> 0",
  "MLFML_USER_3": "Audited%"
}
Returns 1 or more Multiple Locations if successful.
This is like 'QBE' in Expandable.

Accepted Multiple Location Fields:
BOOK_QTY, CREATED_BY, DATE_CREATED, DATE_LAST_ACT, 
DATE_LAST_ISSUE, DATE_LAST_PHY, DATE_LAST_PRINT, DATE_LAST_RECPT, 
DATE_LAST_UPDT, DATE_MODIFIED, MLFML_USER_1, MLFML_USER_2, 
MLFML_USER_3, MLFML_USER_4, MODIFIED_BY, ON_HAND_QTY, 
PART_ID, PHYSICAL_QTY, STOCK_LOCATION, STORES_CODE, 
TIME_LAST_UPDT

Define this parameter in the request body.

Response Information

Success:
200/OK
Body contains JSON array with found Multiple Locations.

Error:
400/Request JSON is invalid.
401/AuthToken was not provided.
401/AuthToken is malformed.
401/AuthToken is expired.
401/AuthToken login failure.
500/(Message)
Body contains JSON object with Message and MessageCode.

Returned Multiple Location Fields:
BOOK_QTY, CREATED_BY, DATE_CREATED, DATE_LAST_ACT, DATE_LAST_ISSUE, DATE_LAST_PHY, DATE_LAST_PRINT, DATE_LAST_RECPT, DATE_LAST_UPDT, DATE_MODIFIED, MLFML_USER_1, MLFML_USER_2, MLFML_USER_3, MLFML_USER_4, MODIFIED_BY, ON_HAND_QTY, PART_ID, PHYSICAL_QTY, STOCK_LOCATION, STORES_CODE, TIME_LAST_UPDT