Update Specific Asset Fullness Level Filter API
Require Authentication
This API is used to Update Specific Asset Fullness Level Filter in the company based on combination of deviceID and token.
URL
api/companies/binleveledit/:fullnessLevelID
Required parameter (in URL)
- :fullnessLevelID «contains fullnessLevelID that want to be updated. It must be put in the URL, e.g: api/companies/binleveledit/2»
Required parameter (POST)
- deviceID
- token
- minRange «contains minimum value of the new fullness level»
- maxRange «contains maximum value of the new fullness level»
Example JSON Payload
{ "deviceID": "ABCD-EFGH-IJKL-MNOP", "token": "c43fa596e7916827106b591e2bb026cd", "maxRange": 12, "minRange": 12 }
Possible return HTTP status code
- 200
- 400
- 401
- 404
- 405
Return message
{ "status": "success", "message": { "fullnessLevelID": 17, "companyID": 1, "minRange": 10, "maxRange": 100, "createdByUserID": 3, "updatedByUserID": 3, "createdDate": 1478174353, "updatedDate": 1478174353 } }