List beacon notifications - shine-chen/Quest-Web-API GitHub Wiki

Brief

List notifications of a given beacon

Path

v1/beacons/:uuid/:major/:minor/notifications

Path Params

  1. uuid
    • Beacon UUID
  2. major
    • Beacon Major Number
  3. minor
    • Beacon Minor Number

URL Params

  1. token
    • Authorized access token.

Request

GET /v1/beacons/F48EC283-B617-15BD-10CF-34BCC3F1465C/1/1/notifications?token=ROYwWbdYo6FpHgHX4QMkSsg8FLCWCiFirlOWjbVlvfI= HTTP/1.1
Host: localhost:3000
Cache-Control: no-cache

Response

{
    "count": "1",
    "data": [
        {
            "notification_beacon_id": "1",
            "notification_beacon_msg": "test beacon notification"
        }
    ]
}
⚠️ **GitHub.com Fallback** ⚠️