Resend email verification token (requires authentication)
POST
/api/v1/auth/resend-verification
const url = 'https://dashboard.justcrawl.io/api/v1/auth/resend-verification';const options = { method: 'POST', headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'}, body: '{"context":"onboarding"}'};
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/resend-verification \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "context": "onboarding" }'Authorizations
Section titled “Authorizations ”Request Body
Section titled “Request Body ” Media type application/json
object
context
Optional redirect context for the verification link
string
Responses
Section titled “ Responses ”Verification email sent
Email is already verified
User not found