Superfy Platform API Documentation


Add New Notification API

Require Authentication

This API is used to add new Notification for the company based on combination of deviceID and token.


URL

api/notifications/add

Required parameter (POST)

Optional parameter (POST)

Example JSON Payload

{
	"notificationName":"test notification",
	"notificationType":"notification",
	"emergency":"Y",
	"emergencyIntervalSeconds":"-1",
	"emailSubject":"",
	"emailContent":"",
	"smsMessage":"",
	"notifType":["fill_level"],
	"valueAlertType":["min"],
	"valueAlert":["80"],
	"userID":[198],
	"sendType":"weekly",
	"sendDay":"1",
	"sendDate":"",
	"customEmail":["wilson@smartsensor.com.au"],
	"customPhone":["+123123123"],
	"sendingMethod":[ ["198",["email", "mobile", "sms", "web"]]],

	"deviceID": "B22B9969-5652-4C8D-8BC8-B4C87E3B815D",
	"token": "5c2c0a50a9306524b1b7d9e46d5640c4"
}

Possible return HTTP status code

Return message, contains newly created project

{
    "status": "success",
    "message": [
        "Notification Settings has been added."
    ]
}