diff --git a/skills/uipath-platform/references/orchestrator/orchestrator.md b/skills/uipath-platform/references/orchestrator/orchestrator.md index 4afcb3318..450482f24 100644 --- a/skills/uipath-platform/references/orchestrator/orchestrator.md +++ b/skills/uipath-platform/references/orchestrator/orchestrator.md @@ -17,7 +17,7 @@ All `uip or` commands share a set of cross-cutting options: | `--limit ` | List commands | Number of items to return (default 50). | | `--offset ` | List commands | Number of items to skip for pagination. | | `--order-by ` | List commands | OData-style sort (e.g., `'Name asc'`, `'Id desc'`). | -| `--all-fields` | Most get/list commands | Return the full API DTO (PascalCase keys) instead of the curated summary. Output casing matches the curated default — no casing flip when toggling the flag. Use when you need a field not in the default output. | +| `--all-fields` | Most get/list commands | Return the full API DTO instead of the curated summary. Use when you need a field not in the default output. | | `--output-filter ` | All commands | JMESPath expression to filter/reshape JSON output (e.g., `--output-filter "Data[].Key"`). | **Pagination pattern.** List responses include a `Pagination` block with `Returned`, `Limit`, `Offset`, and `HasMore`. When `HasMore` is `true`, increment `--offset` by `--limit` and fetch again. Continue until `HasMore` is `false` or `Returned < Limit`.