lookupNotification abstract method

Future<MastodonResponse<Notification>> lookupNotification({
  1. required String notificationId,
})

View information about a notification with a given ID.

Parameters

  • notificationId: The ID of the Notification in the database.

Endpoint Url

  • GET /api/v1/notification/:id HTTP/1.1

Authentication Methods

  • OAuth 2.0

Required Scopes

  • read:notifications

Reference

Implementation

Future<MastodonResponse<Notification>> lookupNotification({
  required String notificationId,
});