Superfy Platform API Documentation


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)

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

Example JSON Payload

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

Possible return HTTP status code

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