Verifies ownership of the original email address by validating a confirmation code sent to that address. Must be completed before requesting a new email address. Returns proof token for use in new email request.
curl --request POST \
--url https://api.fluxer.app/v1/users/@me/email-change/verify-original \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"ticket": "<string>",
"code": "<string>"
}
'{
"original_proof": "<string>"
}Bot token: Authorization: Bot <token>. This is the primary authentication method for bot applications.
Success
Proof token issued after verifying the original email
curl --request POST \
--url https://api.fluxer.app/v1/users/@me/email-change/verify-original \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"ticket": "<string>",
"code": "<string>"
}
'{
"original_proof": "<string>"
}