requestProcess
Executes new generic process request(s) for resource(s)
Format
udclient [global-args...] [global-flags...]
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://deployserver.example.com:8443
requestProcess [JSON File]
Example response
[{
"id": "1710e3a8-b52f-02e3-d5ed-421c17f24af2",
"submittedTime": 1585081649980,
"userName": "admin",
"processPath": "processes\/1710e0b0-eb7e-e9b7-38ab-c7be3e828f56",
"processVersion": 4
}]
Example response
[{
"id": "1710e506-b23a-ab88-7634-563464e20ef0",
"submittedTime": 1585083083529,
"userName": "admin",
"processPath": "processes\/1710e0b0-eb7e-e9b7-38ab-c7be3e828f56",
"processVersion": 2
}]
Example response
[
{
"id": "1710e526-9d32-1fc1-299f-f7562b3b33f3",
"submittedTime": 1585083214272,
"userName": "admin",
"processPath": "processes\/1710e0b0-eb7e-e9b7-38ab-c7be3e828f56",
"processVersion": 4
},
{
"id": "1710e526-9ee8-a8f1-676c-dbb25d9885a2",
"submittedTime": 1585083214274,
"userName": "admin",
"processPath": "processes\/1710e0b0-eb7e-e9b7-38ab-c7be3e828f56",
"processVersion": 4
}
]
Example response
[{
"id": "1710e560-809e-477f-d5ef-d260dbf4578c",
"submittedTime": 1585083451381,
"userName": "admin",
"processPath": "processes\/1710e0b0-eb7e-e9b7-38ab-c7be3e828f56",
"processVersion": 4
}]
Related REST command: Executes new generic process request(s) for resource(s).