What happened
An email address needs to be verified before it can be used. This error is returned in two contexts:- Account signup — a verification email has been sent to the registering address; the account is not created until the link is clicked.
- Alert notifications — an alert was created or updated with a notification email that has not been verified for the owning organization. The alert write is rejected so that no alert silently fails to deliver.
How to fix
Account signup
1
Check your inbox for an email with the subject “Verify your email address”.
2
Click the verification link in the email. The link expires in 24 hours.
3
After verification, log in with your credentials.
Alert notifications
1
Start verification for the email address by calling
POST /v1/organizations/{orgId}/notification-emails with {"email": "..."}. A confirmation link is sent to that address.2
Click the link (or
POST /v1/notification-emails/verify with the token from the link). The link expires in 24 hours.3
Retry the alert
POST or PATCH — the email is now in the organization’s verified pool and the write succeeds.