Skip to main content

Typed access

Process operations are reached via client.Api.Process on EksoClient.
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.

Operations

MethodRouteSummary
GET/api/processLists all workflow process configurations for the current tenant.
GET/api/process/statsReturns item count statistics grouped by process type.
GET/api/process/{id}Retrieves a single workflow process configuration by identifier.
POST/api/processCreates 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