Skip to content

Error reference

Verify your email

Verify your email address to do this.

Code
email_unverified
HTTP status
403
Category
forbidden
Severity
error
Retryable
No
Domain
accounts

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/email_unverified",
  "title": "Verify your email",
  "status": 403,
  "category": "forbidden",
  "code": "email_unverified",
  "detail": "Verify your email address to do this.",
  "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 === 'email_unverified') {
    // Verify your email address to do this.
  }
}