createNewConfirmationEmail abstract method

Future<MastodonResponse<Empty>> createNewConfirmationEmail({
  1. required String email,
})

Request a new confirmation email, potentially to a new email address.

Parameters

  • email: If provided, updates the unconfirmed user’s email before resending the confirmation email.

Endpoint Url

  • POST /api/v1/emails/confirmation HTTP/1.1

Authentication Methods

  • OAuth 2.0

Reference

Implementation

Future<MastodonResponse<Empty>> createNewConfirmationEmail({
  required String email,
});