get_thread | SELECT | thread_id | Gets information about a notification thread. |
list_notifications_for_authenticated_user | SELECT | | List all notifications for the current user, sorted by most recently updated. |
list_repo_notifications_for_authenticated_user | SELECT | owner, repo | Lists all notifications for the current user in the specified repository. |
mark_notifications_as_read | EXEC | | Marks all notifications as "read" for the current user. If the number of notifications is too large to complete in one request, you will receive a 202 Accepted status and GitHub will run an asynchronous process to mark notifications as "read." To check whether any "unread" notifications remain, you can use the List notifications for the authenticated user endpoint and pass the query parameter all=false . |
mark_repo_notifications_as_read | EXEC | owner, repo | Marks all notifications in a repository as "read" for the current user. If the number of notifications is too large to complete in one request, you will receive a 202 Accepted status and GitHub will run an asynchronous process to mark notifications as "read." To check whether any "unread" notifications remain, you can use the List repository notifications for the authenticated user endpoint and pass the query parameter all=false . |
mark_thread_as_read | EXEC | thread_id | Marks a thread as "read." Marking a thread as "read" is equivalent to clicking a notification in your notification inbox on GitHub: https://github.com/notifications. |