createMarkConversationAsRead abstract method

Future<MastodonResponse<Conversation>> createMarkConversationAsRead({
  1. required String conversationId,
})

Mark a conversation as read.

Parameters

  • conversationId: The ID of the Conversation in the database.

Endpoint Url

  • POST /api/v1/conversations/:id/read HTTP/1.1

Authentication Methods

  • OAuth 2.0

Required Scopes

  • write:conversations

Reference

Implementation

Future<MastodonResponse<Conversation>> createMarkConversationAsRead({
  required String conversationId,
});