bridge_enqueue
Add a task to a channel's work queue for workers to claim. Use structured JSON or string content, with an idempotency key to prevent duplicate enqueues on retries.
Instructions
Add a task to a channel's work queue for a worker to claim. Give payload (structured JSON) or content (a string). Pass idempotency_key so a retried enqueue does not create a duplicate.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| channel | Yes | ||
| content | No | String task payload | |
| payload | No | Structured JSON task payload | |
| priority | No | Higher priority is claimed sooner | |
| enqueued_by | No | ||
| max_attempts | No | ||
| delay_seconds | No | Delay before the task becomes claimable | |
| idempotency_key | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||