bulk_add_queue_items
Add multiple items to a UiPath Orchestrator queue in a single API call, choosing between all-or-nothing commit or processing each item independently.
Instructions
Add multiple items to a queue in a single API call.
Args: folder_name: The display name of the folder. queue_name: The name of the queue. items: List of item objects. Each item may contain: - specific_content (dict, required) — the data payload - priority (str, optional) — 'Low', 'Normal', or 'High' - reference (str, optional) — tracking reference commit_type: 'AllOrNothing' (default) — rolls back everything if any item fails; 'ProcessAllIndependently' — commits each item individually.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| items | Yes | ||
| queue_name | Yes | ||
| commit_type | No | AllOrNothing | |
| folder_name | Yes |