masto
    Preparing search index...

    Interface NotificationsRequestsResource

    interface NotificationsRequestsResource {
        accept: Method<void>;
        dismiss: Method<void>;
        list: Method<
            Paginator<NotificationRequest[], DefaultPaginationParams>,
            DefaultPaginationParams,
            HttpMetaParams<"json">,
        >;
        merged: NotificationsRequestsMergedResource;
        $select(id: string): NotificationsRequests$SelectResource;
    }
    Index

    Properties

    Methods

    Properties

    accept: Method<void>

    Accepts multiple notification requests, which merges the filtered notifications from those users back into the main notifications and accepts any future notification from them.

    dismiss: Method<void>

    Dismiss multiple notification requests, which hides them and prevent them from contributing to the pending notification requests count.

    Notification requests for notifications filtered by the user's policy. This API returns Link headers containing links to the next/previous page.

    Methods