Update a process
Description
Creates a new process
Endpoint
/path/process
Method
PATCH
Access Level Rules
Minimum Access Level
edit+
Processing Units
Processing units
1
Parameters
Name
Description
Required
Default
parameters
Should be an array of objects. Each object should have a name, description and example. All should be of type string.
false
gitUrl
Should be a string with the url of the git to run.
false
gitFile
Should be the file to run as a process.
false
Example request:
{
parameters: [{"description":"first number to multiply", "example":"2", "name":"parameter 1" }, {"description":"second number to multiply", "example":"4", "name":"parameter 2" }],
gitUrl: "https://github.com/multiplier/multiplication",
gitFile: "multiply.py",
};
Last updated
Was this helpful?