List beacon notifications - shine-chen/Quest-Web-API GitHub Wiki
List notifications of a given beacon
v1/beacons/:uuid/:major/:minor/notifications
- uuid
- Beacon UUID
- major
- Beacon Major Number
- minor
- Beacon Minor Number
- token
- Authorized access token.
GET /v1/beacons/F48EC283-B617-15BD-10CF-34BCC3F1465C/1/1/notifications?token=ROYwWbdYo6FpHgHX4QMkSsg8FLCWCiFirlOWjbVlvfI= HTTP/1.1
Host: localhost:3000
Cache-Control: no-cache
{
"count": "1",
"data": [
{
"notification_beacon_id": "1",
"notification_beacon_msg": "test beacon notification"
}
]
}