Skip to main content

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


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);
});

Responses

StatusMeaningDescriptionSchema
200OKResponse status codenone

Example responses

{
"count": "integer"
}