Completes the password change after email verification. Requires the verification proof and new password. Invalidates all existing sessions.
curl --request POST \
--url https://api.fluxer.app/v1/users/@me/password-change/complete \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"ticket": "<string>",
"verification_proof": "<string>",
"new_password": "<string>"
}
'{
"code": "ACCESS_DENIED",
"message": "<string>",
"errors": [
{
"path": "<string>",
"message": "<string>",
"code": "<string>"
}
]
}Bot token: Authorization: Bot <token>. This is the primary authentication method for bot applications.
No Content
curl --request POST \
--url https://api.fluxer.app/v1/users/@me/password-change/complete \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"ticket": "<string>",
"verification_proof": "<string>",
"new_password": "<string>"
}
'{
"code": "ACCESS_DENIED",
"message": "<string>",
"errors": [
{
"path": "<string>",
"message": "<string>",
"code": "<string>"
}
]
}