Skip to main content
Use ReachOwl comment automations to automatically post comments on Facebook through your connected accounts. This guide walks you through the full lifecycle: getting an executor, creating a comment automation, controlling its status, reviewing executions, updating it, and deleting it.
1

Get executor IDs

Comment automations need at least one browser executor. List available executors from your app states and pick an id.
Save the id of an active executor for the next step.
2

Create the comment automation

Send a POST request to /api/v1/comment-automations with your comment content, executor, schedule, and daily limit.
You can personalize comment text with the {{first_name}} placeholder. ReachOwl replaces it with the target’s first name when the comment is posted.
3

Pause or resume

Update the status through a PATCH request instead of using a dedicated pause endpoint. Send status: 0 to pause or status: 1 to resume.
4

Review executions

Every run of a comment automation is recorded as an execution. Use the executions endpoint to see what was posted and whether it succeeded.
Check executions after resuming an automation to confirm comments are posting as expected.
5

Update the automation

Change the schedule, comments, or daily limit with PATCH. Send only the fields you want to change. PUT is also supported and calls the same update handler.
6

Delete the automation

Remove a comment automation you no longer need.
Deleting a comment automation cannot be undone. To stop one temporarily, set status to 0 instead.
There are no separate /pause, /resume, or /clone routes for comment automations in the ReachOwl v1 API. Use PATCH with the status field to pause or resume.