Too many posts to shift
This campaign has too many scheduled posts to shift in one request. Nothing was moved — shift a narrower selection from the calendar instead.
- campaign_shift_too_large
- 409
- conflict
- warn
- No
- campaigns
How to fix
Review the request and try again. The response `detail` explains the specific problem.
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/campaign_shift_too_large",
"title": "Too many posts to shift",
"status": 409,
"category": "conflict",
"code": "campaign_shift_too_large",
"detail": "This campaign has too many scheduled posts to shift in one request. Nothing was moved — shift a narrower selection from the calendar instead.",
"correlationId": "c-1f2e3d4c-…",
"severity": "warn"
}Handle it in code
try {
await skedcast.posts.create(input);
} catch (err) {
if (err instanceof SkedcastApiError && err.code === 'campaign_shift_too_large') {
// This campaign has too many scheduled posts to shift in one request. Nothing was moved — shift a narrower selection from the calendar instead.
}
}