1
Get executor IDs
Comment automations need at least one browser executor. List available executors from your app states and pick an Save the
id.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.
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.
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.Related pages
- Comment automations overview — status, schedule, limits, and executions
/api-reference/comment-automations/create— create a comment automation/api-reference/comment-automations/executions— list executions
