Skip to main content

events_notifications_mark_all_seen_create

POST 

/api/v3//events/notifications/mark_all_seen/

Mark all the user's notifications as seen

Responses

Marked tasks as read successfully.

Authorization: http

name: authentiktype: httpscheme: bearer
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post, "/api/v3/events/notifications/mark_all_seen/");
request.Headers.Add("Authorization", "Bearer <token>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
/api/v3
Auth