startPasswordChange abstract method

  1. @POST.new('/users/@me/password-change/start')
Future<PasswordChangeStartResponse> startPasswordChange({
  1. @Body.new() required EmptyBodyRequest body,
})

Start password change.

Initiates a password change process. Sends a verification code to the user's email address. Returns a ticket for use in subsequent password change steps.

body - Name not received - field will be skipped.

Implementation

@POST('/users/@me/password-change/start')
Future<PasswordChangeStartResponse> startPasswordChange({
  @Body() required EmptyBodyRequest body,
});