Verifies the email code sent during password change. Returns a proof token needed to complete the password change.
curl --request POST \
--url https://api.fluxer.app/v1/users/@me/password-change/verify \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"ticket": "<string>",
"code": "<string>"
}
'{
"verification_proof": "<string>"
}Bot token: Authorization: Bot <token>. This is the primary authentication method for bot applications.
Success
Proof token issued after verifying the email code
curl --request POST \
--url https://api.fluxer.app/v1/users/@me/password-change/verify \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"ticket": "<string>",
"code": "<string>"
}
'{
"verification_proof": "<string>"
}