Superfy Platform API Documentation


Get Available Groups API

Require Authentication

This API is used to get available groups within zones for the company based on combination of deviceID and token.


URL

api/projects/groups/:projectID

Required parameter (POST)

Optional parameter (GET)

All optional parameters use GET method. So it should be embedded in the URL, e.g: api/projects/pins/1?q=tes&o=name

Example JSON Payload

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

Possible return HTTP status code

Return message

{
  "status": "success",
  "message": {
    "current_parameter": "?offset=0",
    "next_parameter": "?offset=0",
    "previous_parameter": "?offset=0",
    "start": 0,
    "total": 2,
    "lists": [{
      "projectgroupID": 1,
      "projectID": 1,
      "projectName": "TEst without icon in the kost",
      "groupName": "group 1",
      "createdDate": 1462715208,
      "updatedDate": 1462715208,
      "createdBy": 3,
      "updatedBy": 3,
      "companyID": 1,
      "total_projectpins": 10
    }, {
      "projectgroupID": 3,
      "projectID": 1,
      "projectName": "TEst without icon in the kost",
      "groupName": "Test Group API",
      "createdDate": 1462732975,
      "updatedDate": 1462732975,
      "createdBy": 3,
      "updatedBy": 3,
      "companyID": 1,
      "total_projectpins": 0
    }]
  }
}

Note:
Use "next_parameter" and "previous_parameter" to go to next or previous result page. Just combine it with the API URL, e.g: "api/projects/pins/1"+next_parameter or "api/projects/pins/1"+previous_parameter
Since customlocationID is optional, if customlocationID is set to 0 and locationName is set to empty string, it indicates that asset type does not have custom location assigned.
Since manufacturerID is optional, if manufacturerID is set to 0 and manufacturerName is set to empty string, it indicates that asset type does not have manufacturer assigned.