Cancel Scheduled Post
Endpoint: DELETE /posts/:id
Cancels only scheduled posts.
Rules
- User must belong to the post account.
- Post status must be
scheduled. - If a delayed BullMQ job exists (
jobId == postId), it is removed. - Post status is updated to
cancelled.
Responses
200{ "success": true, "postId": "<id>" }400when status is notscheduled403when user is not member of account404when post does not exist