Skip to main content
Create a new post scheduler that posts content to Facebook groups on a recurring schedule. You can also clone an existing scheduler by passing clone_from in the body.

Create a new scheduler

When creating a scheduler, you must specify the target groups, schedule, and executor. Each post in the posts array includes a text string that will be published.

Body parameters

string
required
Name of the post scheduler.
integer
required
The executor (browser profile) that will perform the posts.
integer
required
Team the scheduler belongs to.
array
required
Array of Facebook group URLs where content will be posted. Example: ["https://www.facebook.com/groups/group1"].
string
required
Type of schedule: "interval" or "fixed".
integer
Number of minutes between posts. Required when schedule_type is "interval".
array
Array of post objects, each with a text string. These posts are rotated or queued depending on schedule type.

Example request

Clone an existing scheduler

Use clone_from to duplicate an existing scheduler, including its group URLs and posts. You can override any field after cloning.

Body parameters

integer
ID of the existing scheduler to clone.
string
required
Name for the cloned scheduler.
integer
required
Executor for the cloned scheduler.
integer
required
Team the cloned scheduler belongs to.

Example request