UiPath / uipathcli

Command line interface to simplify, script and automate API calls for UiPath services (preview)
MIT License
61 stars 5 forks source link

Add support to specify parameter multiple times #72

Closed thschmitt closed 1 year ago

thschmitt commented 1 year ago

e.g.

uipath app create --users "name=Administrator" --users "name=Guest"

will create the following JSON:

{
  "users": [
    { "name": "Guest" },
    { "name": "Administrator" }
  ]
}