uipath-cli
latest
false
- 概要
- はじめに
- 概念
- Using UiPath CLI
- 使用ガイド
- CI/CD recipes
- コマンド リファレンス
- 概要
- 終了コード
- Global options
- uip codedagent
- uip docsai
- add-test-data-entity
- add-test-data-queue
- add-test-data-variation
- analyze
- build
- プロジェクトを作成
- diff
- find-activities
- get-analyzer-rules
- get-default-activity-xaml
- get-errors
- get-manual-test-cases
- get-manual-test-steps
- get-versions
- get-workflow-example
- indicate-application
- indicate-element
- inspect-package
- install-data-fabric-entities
- install-or-update-packages
- list-data-fabric-entities
- list-workflow-examples
- pack
- 元に戻す
- run-file
- search-templates
- start-studio
- stop-execution
- uia
- uip traces
- 移行
- Reference & support
UiPath CLI user guide
最終更新日時 2026年5月7日
uip or feeds lists the package feeds (NuGet-style repositories) that the current user can access. Feed IDs are used with packages verbs (for example, packages list --feed-id …) to target a specific feed.
Synopsis
uip or feeds <verb> [options]
uip or feeds <verb> [options]
Verbs
| Verb | 目的 |
|---|---|
list | List package feeds accessible to the current user. |
uip or feeds list
List available package feeds. Returns feed ID, name, type, and URL.
オプション
| Short | 長押し | 値 (Value) | 既定 (Default) | 説明 |
|---|---|---|---|---|
-t | --tenant | name | session default | Override the tenant. |
例
uip or feeds list
uip or feeds list --output-filter 'Data[].Id'
uip or feeds list --output table
uip or feeds list
uip or feeds list --output-filter 'Data[].Id'
uip or feeds list --output table
Data shape (--output json)
{
"Code": "FeedList",
"Data": [
{
"Id": "a1b2c3d4-0000-0000-0000-000000000001",
"Name": "Tenant Processes",
"FeedType": "Processes",
"FeedUrl": "https://example.com/nuget/processes"
},
{
"Id": "a1b2c3d4-0000-0000-0000-000000000002",
"Name": "Tenant Libraries",
"FeedType": "Libraries",
"FeedUrl": "https://example.com/nuget/libraries"
}
]
}
{
"Code": "FeedList",
"Data": [
{
"Id": "a1b2c3d4-0000-0000-0000-000000000001",
"Name": "Tenant Processes",
"FeedType": "Processes",
"FeedUrl": "https://example.com/nuget/processes"
},
{
"Id": "a1b2c3d4-0000-0000-0000-000000000002",
"Name": "Tenant Libraries",
"FeedType": "Libraries",
"FeedUrl": "https://example.com/nuget/libraries"
}
]
}
終了コード
See Exit codes. No verb-specific overrides.
Related commands
uip or packages— every package verb accepts--feed-idto target a specific feed.