Verify user email address using the code sent during registration. Email verification is required before the account becomes fully usable.
curl --request POST \
--url https://api.fluxer.app/v1/auth/verify \
--header 'Content-Type: application/json' \
--data '
{
"token": "<string>"
}
'{
"code": "ACCESS_DENIED",
"message": "<string>",
"errors": [
{
"path": "<string>",
"message": "<string>",
"code": "<string>"
}
]
}Email verification token from email
No Content
curl --request POST \
--url https://api.fluxer.app/v1/auth/verify \
--header 'Content-Type: application/json' \
--data '
{
"token": "<string>"
}
'{
"code": "ACCESS_DENIED",
"message": "<string>",
"errors": [
{
"path": "<string>",
"message": "<string>",
"code": "<string>"
}
]
}