Guide to managing and deleting scheduled runs using API endpoints
Scheduled runs play a crucial role in automating workflows, ensuring consistent and timely task execution.
This guide provides a detailed walkthrough of managing and deleting scheduled runs via API endpoints, allowing you to optimize your operations seamlessly.As an API user, you can trigger workflows (actions) directly using the POST Launch Workflow API and manage repeat schedules with ease.
{ "job_name": "", "steps": [...], "repeat_option": { "type": "minute/hour/day/week/month", "value": 5 // Must be an integer representing the interval }}
“job_name”: The name of the job you want to launch.
“repeat_option”: Specifies the repeat schedule:
type: Options include minute, hour, day, week, or month.
The workflow will extract the most recent connections from the past 3 hours, with a maximum of 1,000 results per run, scheduled to repeat every 3 hours.
You can detect and compare new LinkedIn connections with your leads.
Once a connection request is accepted, you can enroll leads into the next campaign steps.
Always use a frequency that matches your campaign needs (e.g., every 3 hours
is recommended).