Superfy Platform API Documentation


Update Specific Pin on a Zone Map API

Require Authentication

This API is used to update specific pin on a zone map for the company based on combination of deviceID and token.


URL

api/projects/updatepin/:projectID/:projectpinID

Required parameter (in URL)

Required parameter (POST)

Optional parameter (POST)

Note:
If customlocationID is not passed, but pin latitude and longitude are inside radius of certain custom location, system will automatically fill customlocationID with the nearest custom location. If user decide not to use customlocationID, please always pass customlocationID although its value is 0. Otherwise, it will be filled automatically by system.
If pin address is empty, and not using customlocationID, pin address will be automatically filled by related data from Google API based on latitude and longitude in required parameter. If using customlocationID, address will be filled by custom location address. Related data from Google Maps API is as below:

Example JSON Payload

{
	"deviceID": "ABCD-EFGH-IJKL-MNOP",
	"token": "c43fa596e7916827106b591e2bb026cd",
	"assetTag": [{
		"type": "existing",
		"value": 1
	}, {
		"type": "new",
		"value": "tags api"
	}]
}

Example below will reset the pin name to use default pattern pin name specified in asset type. Also, it will change pin's zone ID and delete all assetTag

{
	"deviceID": "ABCD-EFGH-IJKL-MNOP",
	"token": "bb602ab13b8090268cd6e3bb9dfa39e2",
	"latitude": -6.202423572540,
	"longitude": 106.779052734375,
	"pintypeID": 1,
	"new_projectID": 2,
	"name": "",
	"iconType": "pintype",
	"assetTag": []
}

Possible return HTTP status code

Return message

{
  "status": "success",
  "message": {
    "projectpinID": 9,
    "projectID": 5,
    "projectName": "TEst without icon in the kost dupli",
    "projectgroupID": 0,
    "groupName": "",
    "iconType": "pintype",
    "iconID": 0,
    "iconURL": "http://localhost/sswebdash/assets/images/icons/pins/appsize/32.png",
    "iconName": "Test Icon",
    "customlocationID": 1,
    "locationName": "test location API edited",
    "pinAddress1": "Jalan Anggrek 22-23",
    "pinAddress2": "",
    "pinCity": "Kota Jakarta Barat",
    "pinState": "Daerah Khusus Ibukota Jakarta",
    "pinCountry": "ID",
    "pinZipCode": "11530",
    "latitude": -6.201930522919,
    "longitude": 106.7802658081,
    "name": "test pin type API",
    "description": "",
    "serialNumber": "",
    "assetTag": [{
      "pinstagsID": 1,
      "tags_text": "tags"
    }, {
      "pinstagsID": 5,
      "tags_text": "tags api"
    }],
    "manufacturerID": 0,
    "manufacturerName": "",
    "createdDate": 1462817660,
    "creatorUserID": 3,
    "pinType": {
      "pintypeID": 2,
      "pinTypeName": "test pin type API",
      "depthWhenEmpty_cm": 100,
      "distanceSensorToFillLine_cm": 10,
      "iconType": "system",
      "iconID": 1,
      "iconURL": "http://localhost/sswebdash/assets/images/icons/pins/appsize/32.png",
      "iconName": "Test Icon",
      "pinTypeDescription": "",
      "pinTypeImageOriginalName": "",
      "pinTypeImageURL": "",
      "manufacturerID": 0,
      "manufacturerName": "",
      "pinTypeCreatedDate": 0,
      "pinTypeCreatedByUserID": 0,
      "pinTypeModifiedDate": 0,
      "pinTypeModifiedByUserID": 0,
      "total_projectpins": 3
    },
    "currentAllocatedSensor": [
      {
        "sensorallocatedID": 1,
        "sensorsID": 1,
        "sensorstokenID": 1,
        "sensorCompany": "LX Group",
        "sensorDeviceID": 1231,
        "firmwareVersion": "1231",
        "sensorName": "tes",
        "description": "asdasd",
		"allocationDate": 1463685570,
		"depthWhenEmpty_cm": 100,
		"distanceSensorToFillLine_cm": 10,
		"endDate": 0,
        "latestSensorDataDate": 1463991683,
        "latestSensorData": {
          "sensorDeviceID": "91FE572400000000",
          "temperatureExist": "N",
          "temperatureValue": 0,
          "temperatureOkay": "N",
          "accelerometer_x": 0,
          "accelerometer_y": 0,
          "accelerometer_z": 0,
          "ultrasoundExist": "Y",
          "ultrasound": 47,
          "batteryVoltage_mV": 3335,
          "signalStrengthExist": "Y",
          "signalStrength_rssi_dbm": -97,
          "signalStrength_bitErrorRate": 25,
          "timestampdata": 1463991683
        }
      }
    ]
  }
}

Note:
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.
currentAllocatedSensor has been sorted by latestSensorDataDate desc.
latestSensorData will contain 1 latest sensor data. But if the latest sensor data ultrasoundExist = 'N', it will find update the ultrasoundExist and ultrasound field with latest ultrasound success data reading, it will do the same for temperatureExist and temperatureValue, signalStrengthExist and signalStrength_rssi_dbm and signalStrength_bitErrorRate