Get Specific Asset Fullness Level Filter in Company API
Require Authentication
This API is used to Get Specific Asset Fullness Level Filter for the company based on combination of deviceID and token.
Only users that have module "user_and_roles_menu" and "manage_user" in their role/department (currently only Administrator) can Get Specific Asset Fullness Level Filter
URL
api/companies/binlevels
Required parameter (POST)
- deviceID
- token
Optional parameter (GET)
All optional parameters use GET method. So it should be embedded in the URL, e.g: api/companies/department?q=department%20name&o=departmentName
- o «used to sort data, contains field name. Available value: minRange, maxRange. Default value: minRange»
- ot «used to sort data, contains sort type. Available value: asc, desc. Default value: asc»
- per_page «indicates how many data that will be displayed in each call. Value must be a number between 0 to 500 (0 = unlimited). Default value: 0»
- offset «indicates the first data index that will be displayed in each call. Value must be a number with minimum value is 0. Default value: 0»
Example JSON Payload
{ "deviceID": "ABCD-EFGH-IJKL-MNOP", "token": "c43fa596e7916827106b591e2bb026cd" }
Possible return HTTP status code
- 200
- 400
- 401
- 405
Return message
{ "status": "success", "message": { "current_parameter": "?per_page=0&offset=0", "next_parameter": "?per_page=0&offset=0", "previous_parameter": "?per_page=0&offset=0", "start": 0, "total": 2, "lists": [{ "fullnessLevelID": 15, "companyID": 1, "minRange": 55, "maxRange": 85, "createdByUserID": 3, "updatedByUserID": 3, "createdDate": 1478168459, "updatedDate": 1478168459 }, { "fullnessLevelID": 16, "companyID": 1, "minRange": 12, "maxRange": 12, "createdByUserID": 3, "updatedByUserID": 3, "createdDate": 1478172973, "updatedDate": 1478172973 }] } }