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.
curl --request POST \
--url https://api.fluxer.app/v1/users/@me/password-change/start \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{}'{
"ticket": "<string>",
"code_expires_at": "<string>",
"resend_available_at": "<string>"
}Bot token: Authorization: Bot <token>. This is the primary authentication method for bot applications.
The body is of type object.
curl --request POST \
--url https://api.fluxer.app/v1/users/@me/password-change/start \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{}'{
"ticket": "<string>",
"code_expires_at": "<string>",
"resend_available_at": "<string>"
}