requestProcess#

Executes new generic process request(s) for resource(s)

Format#

udclient [\[global-args...\]](../../com.udeploy.reference.doc/topics/cli_command_format.md) [\[global-flags...\]](../../com.udeploy.reference.doc/topics/cli_command_format.md)
  requestProcess [JSON file]

Parameters#

None.

Template#

This command takes a JSON request string or file. Use the following template for the request:

{
  "processId": "ID of generic process",
  "processVersion": "(Optional) Version number of the 
  process to run against. -1 (default) represents latest 
  version",
  "properties": {"Property name": "Property value 
  (Optional)"},
  "resource": "Deprecated, use 'resources'(ID or path of 
  resource to run the process against)",
  "resources": ["Comma-separated list of IDs or paths of 
  resources to run the process against. 'resource' parameter 
  would be ignored if this is present"]
}

Example#

udclient -username jsmith -password passwd 
  -weburl https://myserver.example.com:8443
  requestProcess [JSON File]

Related REST command: Executes new generic process request(s) for resource(s).

Parent topic: CLI Commands