> For the complete documentation index, see [llms.txt](https://docs.ellipsis-drive.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.ellipsis-drive.com/developers/api-v3/path-process/update-a-process.md).

# 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

<table><thead><tr><th>Name</th><th width="221">Description</th><th>Required</th><th>Default</th><th data-hidden>Required</th><th data-hidden>Default</th></tr></thead><tbody><tr><td><code>parameters</code></td><td>Should be an array of objects. Each object should have a name, description and example. All should be of type string. </td><td>false</td><td></td><td></td><td></td></tr><tr><td><code>gitUrl</code></td><td>Should be a string with the url of the git to run. </td><td>false</td><td></td><td></td><td></td></tr><tr><td><code>gitFile</code></td><td> Should be the file to run as a process.</td><td>false</td><td></td><td></td><td></td></tr></tbody></table>

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",
};

```
