destroyBlock abstract method

Future<MastodonResponse<Relationship>> destroyBlock({
  1. required String accountId,
})

Unblock the given account.

Parameters

  • accountId: The ID of the Account in the database.

Endpoint Url

  • POST /api/v1/accounts/:id/unblock HTTP/1.1

Authentication Methods

  • OAuth 2.0

Required Scopes

  • write:blocks

Reference

Implementation

Future<MastodonResponse<Relationship>> destroyBlock({
  required String accountId,
});