Use Command Arguments in Workflow

based on this article How I can Access the Argument values which is passed through the command Line?
ex:

/input:"{'arg1':'hello'}"

I need this arg1 Value in a variable inside the workflow

The workflow you’re pointing to should have an InArgument(Of String) named arg1. You can then access it the same way as you do with any InArgument.

1 Like

How can i pass multiple arguments