Broadcast Messages Unseen Count
This endpoint retrieves the total number of broadcast messages not yet seen by the user.
info
This operation requires authentication
HTTP Request
GET /api/v2/notification/banner/unseen/count/
Example Request
- JavaScript
- Bash
const headers = {
'Accept':'application/json',
'Authorization: Bearer <token>'
};
fetch('/api/v2/notification/banner/unseen/count/',
{
method: 'GET',
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});
# You can also use wget
curl -X GET /api/v2/notification/banner/unseen/count/ \
-H 'Accept: application/json'
-H "Authorization: Bearer <token>"
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | Response status code | none |
Example responses
- 200
{
"count": "integer"
}