Already closing
This workspace has already been closed. Email [email protected] with your reference code if you need help.
- closure_already_requested
- 409
- conflict
- warn
- No
- other
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/closure_already_requested",
"title": "Already closing",
"status": 409,
"category": "conflict",
"code": "closure_already_requested",
"detail": "This workspace has already been closed. Email [email protected] with your reference code if you need help.",
"correlationId": "c-1f2e3d4c-…",
"severity": "warn",
"action": "contact-support"
}Handle it in code
try {
await skedcast.posts.create(input);
} catch (err) {
if (err instanceof SkedcastApiError && err.code === 'closure_already_requested') {
// This workspace has already been closed. Email [email protected] with your reference code if you need help.
}
}