Verification email

Request verification email

Request a verification email for the user. When a new user registers within Calyptia Cloud with password, it should receive a verification email, in the case it didn't receive it, or the email expired already, use this endpoint to request a new one.

GEThttps://cloud-api.calyptia.com/v1/verification_email
Authorization
Response

No Content

Request
const response = await fetch('https://cloud-api.calyptia.com/v1/verification_email', {
    method: 'GET',
    headers: {
      "Authorization": "Bearer <token>"
    },
});
const data = await response.json();