Workspace suspended
This workspace has been suspended. Contact support to restore access.
- tenant_suspended
- 403
- forbidden
- error
- No
- auth
How to fix
If this keeps happening, contact support and include the reference id from the response.
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/tenant_suspended",
"title": "Workspace suspended",
"status": 403,
"category": "forbidden",
"code": "tenant_suspended",
"detail": "This workspace has been suspended. Contact support to restore access.",
"correlationId": "c-1f2e3d4c-…",
"severity": "error",
"action": "contact-support"
}Handle it in code
try {
await skedcast.posts.create(input);
} catch (err) {
if (err instanceof SkedcastApiError && err.code === 'tenant_suspended') {
// This workspace has been suspended. Contact support to restore access.
}
}