Skip to main content

Typed access

Item operations are reached via client.Api.Item.Dependency on EksoClient.
await client.Api.Item.Dependency.ListDependencyAsync();
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/item/{id}/dependencyRetrieves the full dependency tree for an item, filtered to items the user can see.
POST/api/itemCreates a new item within a container.
POST/api/item/copyDuplicates an existing item within the same container.
POST/api/item/dependency/add/{parentId}/{childId}Adds a parent-child dependency between two items.
POST/api/item/dependency/remove/{id}Removes an item from its dependency tree, making it a standalone item that retains its children.
POST/api/item/filterExecutes a filter query against items and returns paginated results.
POST/api/item/findFinds items by container ID and/or sequence number.
POST/api/item/listLists items in a container with optional filtering and pagination.
POST/api/item/matchSearches for items matching a keyword across one or more containers, filtered by user permissions.
POST/api/item/resourceLists items assigned to a specific resource (user or job role).
POST/api/item/{id}Retrieves a single item by its identifier, returning an empty item if the user lacks permission.
POST/api/item/{itemId}/replySends an outbound ticket reply as an annotation on an item.
PUT/api/item/{id}Updates an existing item.
DELETE/api/item/{id}Deletes an item by its identifier.

See also