Publishing Methods
A concise guide to all content publishing methods available via the Publer API. Choose the method that best fits your workflow, from instant publishing to automated recycling and recurring schedules.
Available Methods
Immediate Publishing
Send your post to networks right away.
Endpoint:
Request example:
Implementation Notes
Omit
scheduled_at
entirelyContent is processed immediately via the schedule/publish endpoint
Supports all content types and network-specific options
Learn more about immediate publishing
Scheduled Publishing
Plan posts for future dates and times across multiple networks.
Endpoint:
Request example:
Implementation Notes
Include a valid ISO 8601
scheduled_at
timestampTimes must be at least 1 minute in the future
Supports timezone offsets
Each account can have its own
scheduled_at
Learn more about scheduled publishing
Draft Posts
Save work-in-progress content for review or refinement.
Endpoint:
Request example (private draft):
Visibility Options
State Value
Description
Access Control
draft_private
Private draft
Only accessible to the creator
draft_public
or draft
Workspace-visible draft
Available to all workspace members with appropriate permissions
Auto-Scheduling
Let Publer pick the best posting times within a date range.
Endpoint:
Before auto-scheduling, you need to keep in mind that:
You need a posting schedule. Posting schedules are account-specific. You can have only one posting schedule per account, however, it can consist of many time slots.
If you want the same posting schedule across multiple social accounts, you can do so by Duplicating Settings.
Request example:
Key Auto-Scheduling Parameters
Parameter
Type
Required
Description
auto
boolean
Yes
Set to true
to enable auto-scheduling
range.start_date
string
Yes
ISO 8601 timestamp for earliest possible posting time
range.end_date
string
No
ISO 8601 timestamp for latest possible posting time
share_next
boolean
No
When true
, uses next available optimal slot
Learn more about auto-scheduling
Recycling Content
Automatically repost content multiple times on a defined cadence.
Endpoint:
To Recycle a post:
First, you need to create a post and a posting schedule. Click here to learn how to set up a new time slot for your posts.
Request example:
Key recycling parameters:
Parameter
Type
Description
recycling.solo
boolean
When true
, recycles as individual post; otherwise groups with other recycled content
recycling.gap
number
Frequency number (1, 2, 3, etc.)
recycling.gap_freq
string
Frequency unit (Day
, Week
, or Month
)
recycling.start_date
string
Date to begin recycling (ISO 8601 format)
recycling.expire_count
string or number
Maximum number of times to recycle
recycling.expire_date
string
Date to stop recycling (ISO 8601 format, alternative to count)
Learn more about recycle posts
Recurring Posts
Schedule content to repeat on a predefined pattern.
Endpoint:
Request example:
Parameter
Type
Required
Description
state
string
Yes
Must be set to recurring
recurring.start_date
string
Yes
First occurrence date (ISO 8601 format)
recurring.end_date
string
No
Last occurrence date (ISO 8601 format)
recurring.repeat
string
Yes
Frequency type: daily
, weekly
, or monthly
recurring.days_of_week
array
For weekly
Array of weekdays (1=Monday, 7=Sunday)
recurring.repeat_rate
number
No
How often to repeat (e.g., 1=every week, 2=every other week)
recurring.time
string
No
Fixed time for posts (format: "HH:MM")
Learn more about recurring posts
Response Handling
All publishing methods return a job ID for asynchronous processing:
Checking Job Status
Always verify success by checking the job status:
Example success response:
Job Status Values
Status
Description
Next Action
working
Job is still being processed
Wait and check again
complete
Job finished (check failures object for partial failures)
Review results
failed
Job failed completely
Check error details and retry
Advanced Usage Tips
Network-specific content: Override content for specific platforms
Multi-account publishing: Target multiple accounts in a single request
Last updated
Was this helpful?