Add Asset Fullness Level in Company API
Require Authentication
This API is used to add new Asset Level Fullness for the company based on combination of deviceID and token.
URL
api/companies/insertbinlevel
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
- 201
- 400
- 401
- 405
Return message, contains newly created asset fullness level profile
{ "status": "success", "message": { "fullnessLevelID": 17, "companyID": 1, "minRange": 10, "maxRange": 100, "createdByUserID": 3, "updatedByUserID": 3, "createdDate": 1478174353, "updatedDate": 1478174353 } }