Initiates an email change process. Generates a ticket for verifying the original email address before requesting a new email. Returns ticket for use in subsequent email change steps.
curl --request POST \
--url https://api.fluxer.app/v1/users/@me/email-change/start \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{}'{
"ticket": "<string>",
"require_original": true,
"original_email": "<string>",
"original_proof": "<string>",
"original_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.
Success
Ticket returned for email change actions
Whether verification of the original email is required
The original email address on record
Proof token generated when original email verification is not required
ISO8601 timestamp when the original verification code expires
ISO8601 timestamp when the original verification code can be resent
curl --request POST \
--url https://api.fluxer.app/v1/users/@me/email-change/start \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{}'{
"ticket": "<string>",
"require_original": true,
"original_email": "<string>",
"original_proof": "<string>",
"original_code_expires_at": "<string>",
"resend_available_at": "<string>"
}