Skip to content

Error reference

Not on your plan

This feature is not currently available on your plan.

Code
feature_disabled
HTTP status
403
Category
forbidden
Severity
warn
Retryable
No
Domain
quota

How to fix

Upgrade your plan to raise this limit, then try again.

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/feature_disabled",
  "title": "Not on your plan",
  "status": 403,
  "category": "forbidden",
  "code": "feature_disabled",
  "detail": "This feature is not currently available on your plan.",
  "correlationId": "c-1f2e3d4c-…",
  "severity": "warn",
  "action": "upgrade"
}

Handle it in code

try {
  await skedcast.posts.create(input);
} catch (err) {
  if (err instanceof SkedcastApiError && err.code === 'feature_disabled') {
    // This feature is not currently available on your plan.
  }
}