From 468c3d25130d472ae983099c75457285002afe4d Mon Sep 17 00:00:00 2001 From: Patrick Geselbracht Date: Sat, 19 Oct 2024 03:09:09 +0200 Subject: [PATCH] Add still missing notification endpoints to API coverage documentation --- docs/api-coverage/notifications.md | 47 +++++++++++++++++++++++++++++- 1 file changed, 46 insertions(+), 1 deletion(-) diff --git a/docs/api-coverage/notifications.md b/docs/api-coverage/notifications.md index 3944c508..daa754aa 100644 --- a/docs/api-coverage/notifications.md +++ b/docs/api-coverage/notifications.md @@ -42,9 +42,54 @@ Receive notifications for activity on your account or statuses. Will not be implemented. - + GET /api/v1/notifications/unread_count
Get the number of unread notifications Fully supported. + + GET /api/v2/notifications/policy
Get the filtering policy for notifications + + Not yet implemented. + + + PATCH /api/v2/notifications/policy
Update the filtering policy for notifications + + Not yet implemented. + + + GET /api/v1/notifications/requests
Get all notification requests + + Not yet implemented. + + + GET /api/v1/notifications/requests/:id
Get a single notification requests + + Not yet implemented. + + + POST /api/v1/notifications/requests/:id/accept
Accept a single notification request + + Not yet implemented. + + + POST /api/v1/notifications/requests/:id/dismiss
Dismiss a single notification request + + Not yet implemented. + + + POST /api/v1/notifications/requests/accept
Accept multiple notification requests + + Not yet implemented. + + + POST /api/v1/notifications/requests/dismiss
Dismiss multiple notification requests + + Not yet implemented. + + + GET /api/v1/notifications/requests/merged
Check if accepted notification requests have been merged + + Not yet implemented. +