- Synchronous Runs: Immediate execution, results returned in real-time.
- Asynchronous Runs: Execution happens in the background, results can be fetched later.
- Scheduled Runs: Actions are scheduled to run at a specific time or on a recurring basis.
For detailed pagination handling, see the Pagination Guide. To learn more about managing runs and schedules, see the following sections.
Execution Statuses
When running actions in async or schedule mode, the following statuses may be encountered:CREATED: The run or schedule has been created but not yet queued for execution.INVALID: The run or schedule is invalid (e.g., due to bad input or configuration).QUEUED: The run is waiting in the queue to be executed.SCHEDULED: The run is scheduled to execute at a future time (applies to scheduled/CRON jobs).BLOCKED: The run is blocked because the input is invalid (bad input). For example, certain URLs likehttps://www.linkedin.com/products/...do not correspond to a valid LinkedIn company page. The callback itself is processed correctly, but the input cannot be processed.STOPPED: The run was stopped before completion (manually or by the system).RUNNING: The run is currently in progress.FAILED: The run has failed. This can occur when the input seems correct, but during processing in the callback, it returns a failed status with an error (e.g.,424 – No results). In this case, the callback itself was processed correctly, even if the page doesn’t exist or returns nothing.PARTIAL_SUCCEEDED: The run completed with some errors, but partial results are available.SUCCEEDED: The run completed successfully.
Live Mode
You receive data immediately as it is processed, making this the easiest mode to implement for quick integrations. Key characteristics:- Synchronous execution - results returned in the API response
- Manual pagination - you handle pagination using cursor and response headers
- Real-time processing - fastest time to first result
- Rate limit handling - you implement retry logic for
429 Too Many Requestsresponses - Your pacing at scale - live calls hit LinkedIn directly without async/schedule orchestration; follow Live mode: safe practices for spacing, sequencing, and jitter
Live mode is ideal for real-time workflows where you need immediate results and can handle pagination manually.
See the Pagination Guide for detailed pagination handling.
Async Mode
When you run an action asynchronously, the execution happens in the background and results are delivered via callbacks. Key characteristics:- Background execution - non-blocking, your application continues running
- Automatic pagination - Edges handles pagination internally
- Progressive delivery - results streamed via callbacks as they become available
- Callback-based - results delivered to your webhook URL
- Batch processing - ideal for large datasets and long-running tasks
- Automatic retries - transient errors are retried (see below)
Async and schedule runs automatically retry on transient errors. Each run may be attempted up to 11 times in total (initial attempt + 10 retries).
Async mode is ideal for long-running tasks, batch processing, or when you want to avoid blocking your application while waiting for results.
Results are delivered progressively via multiple callbacks, allowing you to start processing data as soon as it becomes available.
Callbacks Structure
Callback Delivery: Both
async and schedule modes deliver results via the callback URL provided in your request.Consistent Format: All execution modes use the same action logic, so inputs and results are identical regardless of mode.Error Handling: Errors follow the standard API error format.async callback format
To track or tag your inputs, you can attach any custom metadata to each input via the
custom_data field. It is especially useful
in async and schedule modes to help you get context on the results.
This applies even when running with multiple inputs: each input will produce one or more callbacks, each carrying its own custom_data.This object is then injected as-is at the root of every callback, allowing you to correlate each result with your own data or internal references.Available Endpoints for Runs
You can manage and monitor your runs using the following endpoints:Refer to the API Reference for request/response details and usage examples for each endpoint.
Schedule Mode
When you run an action inschedule mode, a CRON-job is created that executes at defined intervals.
Key characteristics:
- Scheduled execution - runs at defined times (daily, weekly, custom CRON expressions)
- Postponed execution - can delay execution to a specific time
- Automatic pagination - same as Async mode
- Callback-based - results delivered via callbacks like Async mode
- Recurring tasks - ideal for regular data syncs and automated workflows
- Automatic retries - same retry behavior as async mode
Schedule mode is ideal for recurring tasks, regular data syncs, or when you want to automate actions at specific intervals
without implementing your own scheduling system.Results are delivered progressively exactly like in Async mode, via callbacks on the URL set in the
callback.url parameter.Understanding CRON Expressions
A CRON expression is a string used to define the schedule for recurring jobs. It consists of five fields separated by spaces, representing:- Minute (0-59)
- Hour (0-23)
- Day of month (1-31)
- Month (1-12)
- Day of week (0-6, where 0 = Sunday)
0 9 * * 1-5— Every weekday (Monday to Friday) at 9:00 AM30 2 * * *— Every day at 2:30 AM0 0 1 * *— On the first day of every month at midnight*/30 * * * *— Every 30 minutes
Available Endpoints for Schedules
You can manage and monitor your schedules using the following endpoints:Refer to the API Reference for request/response details and usage examples for each endpoint.
Incremental Sync Mode
Both Async and Schedule modes support an optional incremental sync mechanism. Instead of retrieving the full dataset on every run, you can setsync_mode: "incremental" inside the parameters object to fetch only new data since the last retrieval.
How It Works
- First run (initial full sync): When
sync_modeis set toincrementaland no previous data has been retrieved, the system performs a full sync limited bymax_results(either the value you set or the action’s default). - Subsequent runs (incremental): Once a first retrieval has been completed, the next runs automatically switch to incremental mode and return only newly available data.
Using Incremental Sync with Async Mode
In async mode, you trigger incremental updates manually by continuing a completed run:POST /v1/runs/{run_uid}/continue resets the run and fetches up to max_results new items.
Example: Async Incremental Sync
Using Incremental Sync with Schedule Mode
In schedule mode, incremental sync is automatic: each scheduled iteration fetches only the new data since the last execution. No manual continue call is needed.Example: Scheduled Incremental Sync
Supported Actions
The following actions currently support incremental sync:Continuable Run Statuses
A run can only be continued if its status is one of:BLOCKEDSTOPPEDFAILEDPARTIAL_SUCCEEDEDSUCCEEDED
SCHEDULED.
Limitations
Quick Decision Guide
- Live ⚡️ - Need results immediately and can handle pagination manually
- Async 📦 - Running batch jobs with automated pagination and callback delivery
- Schedule 🕒 - Need recurring or postponed execution with the same benefits as Async

