Overview
Post scheduling workflow:
Platform: Late.com (social media management SaaS)
Connected Platforms: LinkedIn, Instagram, Twitter, TikTok, YouTube
Post Creation
Content Editor
Main Input: Textarea with character counter Character Limits (Platform-Specific):- LinkedIn: 3,000 characters
- Instagram: 2,200 characters (caption)
- Twitter: 280 characters (or 4,000 for Blue)
- TikTok: 2,200 characters
- YouTube: 5,000 characters (description)
- Plain text (all platforms)
- Line breaks (preserved on most)
- Emojis (full Unicode support)
- Hashtags (auto-linked)
- @mentions (platform-dependent)
Late.com automatically adjusts formatting for each platform’s requirements (e.g., truncates text if over limit).
Media Attachments
Supported Types:- Images (PNG, JPG, GIF)
- Videos (MP4, MOV)
- Documents (PDF - LinkedIn only)
- File picker
- Drag and drop
- URL input (hotlink)
- Media library (from Sanity or Late.com)
- LinkedIn: Up to 9 images or 1 video
- Instagram: Up to 10 images/videos (carousel) or 1 video (Reel)
- Twitter: Up to 4 images or 1 video
- TikTok: 1 video only
- YouTube: 1 video (as upload) or thumbnail image
- Crop, resize, filters
- Text overlays
- Brand watermarking
Platform Selection
Multi-Platform Posting: Select which platforms to publish to:- Checkboxes for each connected platform
- Account dropdown per platform (if multiple accounts)
- Preview of how post will appear per platform
- Warning if content exceeds platform limits
- Navigate to Settings → Connected Accounts
- Click “Connect ”
- Authorize via OAuth flow
- Account appears in post composer
You can post to multiple accounts on the same platform simultaneously (e.g., personal + company LinkedIn).
Tags and Hashtags
Tags (Internal):- Free-form text tags for organization
- Example:
episode:123,guest:john-doe,promo - Used for filtering and grouping in calendar
- Not visible to audience
- Included in post content
- Auto-completion suggestions
- Platform-specific best practices shown
Scheduling Options
Publish Now
Immediate Publication:- Sends to platforms within seconds
- No scheduling required
- Use for time-sensitive content
- Write post
- Select platforms
- Click “Publish Now”
- Confirm
- Late.com submits to APIs immediately
Schedule for Later
Date/Time Picker:- Calendar popup
- Time selection (15-minute increments)
- Timezone selector
- Defaults to user’s browser timezone
- Can override per-post
- Display timezone in calendar view
- Must be future date/time
- Warning if scheduling more than 6 months out
- Check for conflicts with other posts
Add to Queue
Queue-Based Posting: Late.com profiles can have posting schedules (e.g., “Mon/Wed/Fri at 9am”). Process:- Select “Add to Queue”
- Choose profile (with schedule)
- Post automatically schedules to next available slot
- View/edit in queue manager
Queue schedules are configured in Late.com dashboard, not in Pulse Content.
Save as Draft
Draft Mode:- Save without scheduling
- Editable anytime
- Not visible to audience
- No publication date
- Work in progress
- Needs approval before scheduling
- Template for future posts
Post Detail Page
Route:/social/post/:id
Full post management interface:
Viewing Mode
Display:- Post content with formatting
- Media attachments (gallery)
- Platform badges
- Scheduled date/time
- Late status (scheduled, published, failed)
- Approval status (from Sanity)
- Tags and hashtags
- Created/updated timestamps
- Edit (switches to editing mode)
- Delete (with confirmation)
- Duplicate (create copy)
- Retry (if failed)
- View Analytics (if published)
Editing Mode
Editable Fields:- Content text
- Media attachments (add/remove/reorder)
- Scheduled date/time
- Tags
- Cannot change platforms after creation
- Cannot edit published posts (must delete and recreate)
- Cannot change Late post ID
- “Save Changes” - Update and stay on page
- “Save & Back” - Update and return to calendar
- “Cancel” - Discard changes
Approval Workflow
Status Progression:
Approval Actions:
- “Submit for Approval” (Draft → Pending)
- “Approve” (Pending → Approved)
- “Request Changes” (Pending → Changes Requested)
- “Reject” (Delete post)
Approval workflow is internal to YBH and does not affect Late.com. Late.com will publish any scheduled post regardless of Sanity approval status.
Publication Status
Late.com Statuses
draft- Saved in Late.com but not scheduled
- Editable
- Not queued for publication
- Queued for future publication
- Late.com will post at specified time
- Still editable (updates sync to Late.com)
- Currently being submitted to platform APIs
- Brief state (seconds to minutes)
- Not editable
- Successfully posted to all platforms
- Immutable (cannot edit)
- View-only with analytics
- Error during publication
- Error message displayed
- Retry option available
- Posted to some platforms, failed on others
- Shows which succeeded/failed
- Retry failed platforms
- Scheduled post cancelled before publication
- Kept in history
- Can be rescheduled
Status Tracking
Real-Time Updates:- Polling (every 30 seconds) for posts near scheduled time
- Webhook callbacks from Late.com (optional)
- Manual refresh button
- Browser notification when post publishes
- Email summary of daily publications (optional)
- Slack integration for failures (optional)
Error Handling
Publication Failures
Common Causes:- Account disconnected or permissions revoked
- Platform API outage
- Content violates platform policies
- Media file too large or wrong format
- Rate limit exceeded
- Red alert banner on post detail page
- Error message from Late.com/platform
- Troubleshooting suggestions
- “Retry” button
- Review error message
- Fix issue (e.g., reconnect account, edit content)
- Click “Retry”
- Late.com re-attempts publication
- Status updates to “publishing” → “published” or “failed” again
Validation Errors
Pre-Submission Checks:- Content not empty
- At least one platform selected
- Scheduled time is future
- Media files within size limits
- Character counts per platform
- Inline validation messages
- Disabled “Schedule” button until valid
- Tooltip hints for fixes
Batch Actions
Planned Features (Not Yet Implemented):- Multi-select posts in calendar
- Bulk delete
- Bulk reschedule
- Bulk approval
- Copy content across posts
Integration with Episodes
Episode Tagging: Posts can be tagged with episode numbers:- Generate posts from episode assets
- Pre-populate tags
- Link to episode in Sanity
- Announcement post (recording day)
- Teaser post (pre-release)
- Release post (publish day)
- Promo posts (with quotes/clips)
- Guest spotlight
Late.com API Reference
Service Functions:createPost(request)
Create and schedule a new post.
Parameters:
Promise<LatePost>
updatePost(postId, request)
Update existing post (if not published).
Parameters:
Promise<LatePost>
deletePost(postId)
Delete post permanently.
Parameters: postId: string
Returns: Promise<void>
retryPost(postId)
Retry failed post publication.
Parameters: postId: string
Returns: Promise<LatePost>
Helper Functions:
schedulePost()- Shorthand for creating scheduled postpublishNow()- Shorthand for immediate publicationsaveDraft()- Shorthand for draft creationaddToQueue()- Shorthand for queue posting
src/services/late.ts for full API.
Related Features
Social Calendar
View all scheduled posts in calendar
Social Analytics
Track post performance and metrics
Troubleshooting
Post Not Appearing in Calendar
Causes:- Scheduled for far future
- Draft status
- Filter hiding post
- Date range not including post date
Cannot Edit Scheduled Post
Cause: Post already in “publishing” or “published” state Solution: Delete and recreate, or create new post with updated contentMedia Upload Fails
Causes:- File too large (>10MB images, >500MB videos)
- Unsupported format
- Network timeout