Superfy Platform API Documentation


Create New Pin on a Zone Map API

Require Authentication

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

Pin/bin/assets creation has a limit number of pin/bin/assets that can be created, depends on user account type.


URL

api/projects/addpin/:projectID

Required parameter (in URL)

Required parameter (POST)

Required or Optional 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 pin address is empty, and not using customlocationID, pin address will be automatically filled bu 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": "bb602ab13b8090268cd6e3bb9dfa39e2",
	"latitude": -6.202423572540,
	"longitude": 106.779052734375,
	"pintypeID": 1,
	"manufacturerID": 1,
	"iconType": "pintype",
	"customlocationID": 1,
	"sensorsID": 1,
	"depthWhenEmpty_cm": 100,
	"distanceSensorToFillLine_cm": 10,
	"assetTag": [{
		"type": "existing",
		"value": 1
	}, {
		"type": "new",
		"value": "tags api"
	}]
}
{
	"deviceID": "ABCD-EFGH-IJKL-MNOP",
	"token": "bb602ab13b8090268cd6e3bb9dfa39e2",
	"latitude": -6.202423572540,
	"longitude": 106.779052734375,
	"pintypeID": 1,
	"name": "test pin zone API",
	"iconType": "system",
	"iconID": 1
}

Possible return HTTP status code

Return message, contains newly created pin project

{
	"status": "success",
	"message": {
		"projectpinID": 13856,
		"projectID": 677,
		"projectName": "Sample API",
		"projectgroupID": 0,
		"groupName": "",
		"iconType": "system",
		"iconID": 1,
		"iconURL": "",
		"iconName": "",
		"customlocationID": 0,
		"locationName": "",
		"pinAddress1": "",
		"pinAddress2": "",
		"pinCity": "",
		"pinState": "",
		"pinCountry": "",
		"pinZipCode": "",
		"latitude": -6.20242357254,
		"longitude": 106.77905273438,
		"name": "test pin zone API",
		"description": "",
		"serialNumber": "",
		"manufacturerID": 0,
		"manufacturerName": "",
		"createdDate": 1692268877,
		"creatorUserID": 90,
		"pinType": {
			"pintypeID": 134,
			"pinTypeName": "bb test",
			"depthWhenEmpty_cm": 20,
			"distanceSensorToFillLine_cm": 2,
			"iconType": "system",
			"iconID": 2,
			"iconURL": "https://wasteinsights-public-files.s3.ap-southeast-2.amazonaws.com/images/icons/default/appsize/wheelie.png",
			"pinTypeDescription": "",
			"pinTypeImageOriginalName": "",
			"pinTypeImageURL": "",
			"manufacturerID": 0,
			"manufacturerName": "",
			"pinTypeCreatedDate": 1591353799,
			"pinTypeCreatedByUserID": 90,
			"pinTypeModifiedDate": 1614829214,
			"pinTypeModifiedByUserID": 90,
			"total_projectpins": 34,
			"iconName": "Wheelie Bin"
		},
		"currentAllocatedSensor": [],
		"assetTag": []
	}
}

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.