Skip to content

Error reference

Email not verified

Your Google email is not verified.

Code
google_unverified
HTTP status
403
Category
forbidden
Severity
error
Retryable
No
Domain
auth

How to fix

Verify your email address, then retry the action.

Example response

Every error is returned as application/problem+json (RFC 9457). The detail is the specific, actionable message; the code is stable and safe to branch on.

{
  "type": "https://skedcast.com/errors/google_unverified",
  "title": "Email not verified",
  "status": 403,
  "category": "forbidden",
  "code": "google_unverified",
  "detail": "Your Google email is not verified.",
  "correlationId": "c-1f2e3d4c-…",
  "severity": "error",
  "action": "verify-email"
}

Handle it in code

try {
  await skedcast.posts.create(input);
} catch (err) {
  if (err instanceof SkedcastApiError && err.code === 'google_unverified') {
    // Your Google email is not verified.
  }
}