move_items_to_list_container
Move multiple items to a list-based container for organizing research data in RSpace. This tool transfers samples, subsamples, and other containers to simplify data management.
Instructions
Moves multiple items to a list-based container
Usage: Organize items in simple containers without specific positioning Items: Can move both samples/subsamples and other containers Returns: Success status and results for each moved item
Input Schema
Name | Required | Description | Default |
---|---|---|---|
item_ids | Yes | ||
target_container_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"item_ids": {
"items": {
"type": "string"
},
"title": "Item Ids",
"type": "array"
},
"target_container_id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"title": "Target Container Id"
}
},
"required": [
"target_container_id",
"item_ids"
],
"type": "object"
}