Superfy Platform API Documentation


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)

Example JSON Payload

{
  "deviceID": "ABCD-EFGH-IJKL-MNOP",
  "token": "c43fa596e7916827106b591e2bb026cd",
  "maxRange": 12,
  "minRange": 12
}

Possible return HTTP status code

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
  }
}