Skip to main content

Broadcast Messages Undisposed Count

This endpoint retrieves the total number of broadcast messages not yet disposed by the user.

info

This operation requires authentication

HTTP Request

GET /api/v2/notification/banner/undisposed/count/

Example Request

const headers = {
'Accept':'application/json',
'Authorization: Bearer <token>'
};

fetch('/api/v2/notification/banner/undisposed/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"
}