resendPasswordChangeCode abstract method

  1. @POST.new('/users/@me/password-change/resend')
Future<void> resendPasswordChangeCode({
  1. @Body.new() required PasswordChangeTicketRequest body,
})

Resend password change verification code.

Resends the verification code for a password change. Use if the original code was not received. Requires a valid password change ticket.

body - Name not received - field will be skipped.

Implementation

@POST('/users/@me/password-change/resend')
Future<void> resendPasswordChangeCode({
  @Body() required PasswordChangeTicketRequest body,
});