uipath-cli
latest
false
- Overview
- Get started
- Concepts
- Using UiPath CLI
- UiPath for Coding Agents
- How-to guides
- CI/CD recipes
- Command reference
- Overview
- Exit codes
- Global options
- uip codedagent
- uip docsai
- add-test-data-entity
- add-test-data-queue
- add-test-data-variation
- analyze
- build
- create-project
- 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
- restore
- run-file
- search-templates
- start-studio
- stop-execution
- uia
- uip traces
- Migration
- Reference & support
UiPath CLI user guide
uip tm user queries user information scoped to the Test Manager service. Exposes one verb: get, which retrieves profile details for a user by their account ID. Use the returned DisplayName and Email values when constructing reports or audit trails that reference Test Manager users.
To manage users at the platform level (inviting, removing, role assignment), use uip platform users.
Synopsis
uip tm user get --user-id <uuid>
uip tm user get --user-id <uuid>
All verbs honor the global options and the standard exit codes. Every verb accepts -t, --tenant <name> and --log-level <level> (default Information).
uip tm user get
Retrieve profile information for a Test Manager user.
Arguments
None.
Options
--user-id <uuid>(required) — the user's account UUID. Obtain fromuip tm project owners listor from test case log data returned byuip tm executions testcaselogs list.
Example
uip tm user get --user-id u1b2c3d4-0000-0000-0000-000000000001
uip tm user get --user-id u1b2c3d4-0000-0000-0000-000000000001
Data shape
{
"Code": "UserGet",
"Data": {
"Id": "u1b2c3d4-0000-0000-0000-000000000001",
"DisplayName": "Alice Example",
"Email": "alice@example.com"
}
}
{
"Code": "UserGet",
"Data": {
"Id": "u1b2c3d4-0000-0000-0000-000000000001",
"DisplayName": "Alice Example",
"Email": "alice@example.com"
}
}
Related
- project owners list — lists user IDs with Owner access to a project.
- uip platform users — platform-level user management.