Skip to main content
For long-running batch work, you can queue the job and consume results later via webhooks or polling.
// Assuming 'enrichLeads' is an array function defined via createArrayFn
await enrichLeads.queue(leads, 'id');

Output

The operation returns a JSON response containing the ID of the created request record (llm_request ID).
{
  "id": "req_..." 
}