Skip to main content

Typed access

Field operations are reached via client.Api.Field on EksoClient.
await client.Api.Field.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/fieldReturns the complete collection of core and custom fields for the current tenant.
POST/api/field/dateCreates a new custom date field.
POST/api/field/decimalCreates a new custom decimal field.
POST/api/field/integerCreates a new custom integer field.
POST/api/field/listCreates a new custom list (dropdown) field.
POST/api/field/percentCreates a new custom percent field.
POST/api/field/pickerCreates a new custom picker field.
POST/api/field/textCreates a new custom text field.
POST/api/field/timeCreates a new custom time field.
POST/api/field/toggleCreates a new custom toggle (boolean) field.
PUT/api/field/dateUpdates an existing custom date field.
PUT/api/field/decimalUpdates an existing custom decimal field.
PUT/api/field/integerUpdates an existing custom integer field.
PUT/api/field/listUpdates an existing custom list (dropdown) field.
PUT/api/field/list/dataUpdates the list values (and default-value pointer) of a list field.
PUT/api/field/percentUpdates an existing custom percent field.
PUT/api/field/pickerUpdates an existing custom picker field.
PUT/api/field/textUpdates an existing custom text field.
PUT/api/field/timeUpdates an existing custom time field.
PUT/api/field/toggleUpdates an existing custom toggle (boolean) field.

See also