Superfy Platform API Documentation


Get List of Notification Sent to Mobile API

Require Authentication

This API is used to get list of notifications and alerts sent to mobile for user based on combination of deviceID and token.


URL

api/notifications/listmobile

Required parameter (POST)

Optional parameter (GET)

All optional parameters use GET method. So it should be embedded in the URL, e.g: api/notifications/listmobile?a=Y&o=createdDate

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": 3,
    "lists": [{
      "notificationrecipientsendingID": 44,
      "content": "You received SmartSensor notification based on your configuration. [1 bin]",
      "isRead": "N",
      "readDate": 0,
      "acknowledge": "N",
      "createdDate": 1465934171,
      "notificationconfigID": 4,
      "notificationName": "no emergency",
      "notificationType": "notification",
      "emergency": "N",
      "alertSensorTriggerSecond": 0
    }, {
      "notificationrecipientsendingID": 34,
      "content": "[test pin type API aedit] You received SmartSensor notification based on your configuration.",
      "isRead": "Y",
      "readDate": 1467229931,
      "acknowledge": "Y",
      "createdDate": 1465770815,
      "notificationconfigID": 3,
      "notificationName": "test",
      "notificationType": "notification",
      "emergency": "Y",
      "alertSensorTriggerSecond": 0
    }, {
      "notificationrecipientsendingID": 30,
      "content": "[test pin type API aedit] You received SmartSensor alert based on your configuration.",
      "isRead": "Y",
      "readDate": 1465940773,
      "acknowledge": "Y",
      "createdDate": 1465770765,
      "notificationconfigID": 3,
      "notificationName": "test",
      "notificationType": "alert",
      "emergency": "N",
      "alertSensorTriggerSecond": 3600
    }]
  }
}

Note:
If notificationType = 'notification', you can ignore alertSensorTriggerSecond field.
If notificationType = 'alert', you can ignore emergency field (or immediate flag). alertSensorTriggerSecond contains threshold of last sensor data reading in seconds.

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/notifications/listmobile"+next_parameter or "api/notifications/listmobile"+previous_parameter