Verify email address using a verification token
POST
/api/v1/auth/verify-email
const url = 'https://dashboard.justcrawl.io/api/v1/auth/verify-email';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"token":"example"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://dashboard.justcrawl.io/api/v1/auth/verify-email \ --header 'Content-Type: application/json' \ --data '{ "token": "example" }'Request Body required
Section titled “Request Body required ” Media type application/json
object
token
required
string
Example generated
{ "token": "example"}Responses
Section titled “ Responses ”Email verified (or already verified)
Invalid or expired verification token