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

```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.ellipsis-drive.com/developers/api-v3/path-process/update-a-process.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
