A logic function run is capped by its timeoutSeconds (900 seconds maximum). Anything that can’t finish in that window — a full re-sync, a per-record fan-out, a third-party API that rate-limits you — has to be split into smaller runs. enqueueJobs does exactly that: it asks the Twenty workers to run one of your app’s logic functions later, once per payload, each run in its own process with its own timeout budget. The caller returns immediately.

Enqueue runs

Import enqueueJobs from twenty-sdk/logic-function, point it at the universalIdentifier of the logic function to run, and pass one payload per run to enqueue.
src/logic-functions/sync-all-contacts.ts
Each run receives its payload as the handler argument, exactly like any other trigger. The target must belong to the same application as the caller — enqueuing another app’s function is rejected with Logic function not found and nothing is enqueued. A single call accepts up to 200 payloads.
enqueueJobs returns as soon as the jobs are accepted, not when they have run. It does not return the targets’ results — have each target write what it produces to the key-value store or to a workspace record if you need to read it back.
The older enqueueJob helper, which enqueues a single job per call, is deprecated. Use enqueueJobs with a one-element payloads list instead.

Job options

Options apply to every run in the batch.
Priority is not configurable yet. Enqueued jobs always run at the lowest priority, so platform work is never delayed behind application jobs. Control over priority is coming soon.
The queued run inherits the acting user of the function that enqueued it, so it acts with the same permissions.

Retry a transient failure

Twenty does not retry every exception from application code. An ordinary thrown error is treated as a permanent failure. For a transient failure, a queued logic function can request up to three retries by throwing RetryableLogicFunctionError.
Throw RetryableLogicFunctionError directly when possible. If you extend it, do not replace its name: Twenty recognizes the serialized name RetryableLogicFunctionError across execution runtimes. retryCount is 0 for the initial execution and increases only when application code requests a retry. maxRetries is at most 3 and can be lower when the queued job has a smaller overall retry limit. Platform failures do not increase retryCount, although they still consume the queue’s overall safety budget. The queue delays retry attempts with exponential backoff and jitter. The exact delay is intentionally not guaranteed, so application code should not depend on a retry happening at a precise time. Once maxRetries is reached, another RetryableLogicFunctionError is recorded as the final application failure without another execution.
Retries re-run the whole handler and may happen after some side effects succeeded. Make the handler idempotent before requesting retries.

Use it: page through a long sync

The classic shape is a function that enqueues itself with the next cursor. Each run does one page of work well inside its own timeout, and the chain stops when there is nothing left.
src/logic-functions/sync-contacts-page.ts

Fan out per record

When the work is naturally per-item, enqueue one job per item in a single call and let the workers process them in parallel instead of looping inline.

Good practice for long-running work

Two rules cover almost every long job: recurse instead of looping, and process a bounded chunk per run. A run that tries to do everything is the failure mode — it hits the timeout, and with a retry it starts the whole thing again from zero. Instead, size one chunk so it comfortably finishes inside timeoutSeconds, persist your position, and enqueue the next run.
src/logic-functions/enrich-companies-batch.ts
What makes this hold up:
  • Size the chunk from the slowest item, not the average. CHUNK_SIZE × worst-case item time has to fit in timeoutSeconds with room to spare, or the tail of a chunk is lost when the run is cut off.
  • Make the terminating condition explicit. Recurse only while a full chunk came back. A chain that stops on “no results” alone will keep going forever if the source ever returns a short page mid-way.
  • Persist progress before enqueuing the next run, so a failed link restarts from the last completed chunk instead of the beginning.
  • Keep each chunk idempotent. Reprocessing one chunk after a retry must not double-write — key writes on the record or external id you are processing.
  • Prefer a chunked chain over one giant fan-out when the work hits a rate-limited third party: a chain with delayMs paces itself, whereas thousands of jobs enqueued at once all become eligible immediately.