get_containers
Get all containers with their associated areas.| Property | |
|---|---|
| Read-only | Yes |
Parameters
None.Returns
A list ofContainerDto objects, each containing:
containerId,containerCode,containerName,containerDesc— container identityareas— list of areas with ID, name, and description
get_container_process_list
Get the processes configured for a specific container, along with their fields.| Property | |
|---|---|
| Read-only | Yes |
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
containerId | string | Yes | Container ID. |
Returns
A list ofContainerProcessDto objects with process name and field names.
get_container_items
Get items belonging to a specific container.| Property | |
|---|---|
| Read-only | Yes |
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
containerId | string | Yes | — | Container ID. |
includeClosed | bool | No | false | Include closed items. |
limit | int | No | 100 | Maximum items to return. |
Returns
A list ofCycleItemDto objects sorted by key.
get_item_filter_list
Filter items using condition groups. Each group contains AND conditions; groups are OR-ed together.| Property | |
|---|---|
| Read-only | Yes |
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
containerIds | string[] | Yes | — | Container IDs to search within. |
conditionsJson | string | Yes | — | Filter conditions as JSON (see format below). |
includeClosed | bool | No | false | Include closed items. |
limit | int | No | 100 | Maximum items to return. |
Condition Format
Equal, NotEqual, LessThan, LessThanOrEqual, GreaterThan, GreaterThanOrEqual, Contains, StartsWith, EndsWith
Use get_field_list and get_status_list to discover field IDs and valid values.
Returns
A list ofCycleItemDto objects sorted by key.