> ## Documentation Index
> Fetch the complete documentation index at: https://ekso.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Process

> Typed SDK access to the Process resource — methods and HTTP routes.

## Typed access

`Process` operations are reached via `client.Api.Process` on `EksoClient`.

```csharp theme={null}
await client.Api.Process.ListAsync();
```

For the full set of methods and request/response types, your IDE's auto-completion
is the fastest discovery path. Each method below maps 1-to-1 to an HTTP route in
the [API Reference](/api-reference/introduction).

## Operations

| Method   | Route                | Summary                                                                                     |
| -------- | -------------------- | ------------------------------------------------------------------------------------------- |
| `GET`    | `/api/process`       | Lists all workflow process configurations for the current tenant.                           |
| `GET`    | `/api/process/stats` | Returns item count statistics grouped by process type.                                      |
| `GET`    | `/api/process/{id}`  | Retrieves a single workflow process configuration by identifier.                            |
| `POST`   | `/api/process`       | Creates a new workflow process configuration.                                               |
| `PUT`    | `/api/process/{id}`  | Updates an existing workflow process and synchronizes field removals across all containers. |
| `DELETE` | `/api/process/{id}`  | Deletes a workflow process and removes it from all containers.                              |

## See also

* [SDK overview](/sdk/overview)
* [Authentication](/sdk/authentication)
* [Quickstart](/sdk/quickstart)
* [Error handling](/sdk/error-handling)
