verifyPasswordChangeCode abstract method

  1. @POST.new('/users/@me/password-change/verify')
Future<PasswordChangeVerifyResponse> verifyPasswordChangeCode({
  1. @Body.new() required PasswordChangeVerifyRequest body,
})

Verify password change code.

Verifies the email code sent during password change. Returns a proof token needed to complete the password change.

body - Name not received - field will be skipped.

Implementation

@POST('/users/@me/password-change/verify')
Future<PasswordChangeVerifyResponse> verifyPasswordChangeCode({
  @Body() required PasswordChangeVerifyRequest body,
});