destroyConversation abstract method

Future<MastodonResponse<Empty>> destroyConversation({
  1. required String conversationId,
})

Removes a conversation from your list of conversations.

Parameters

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

Endpoint Url

  • DELETE /api/v1/conversations/:id HTTP/1.1

Authentication Methods

  • OAuth 2.0

Required Scopes

  • write:conversations

Reference

Implementation

Future<MastodonResponse<Empty>> destroyConversation({
  required String conversationId,
});