rename_inventory_item
Change the name of any inventory item in RSpace, including samples, containers, or templates, by providing the item ID and new name.
Instructions
Changes the name of any inventory item
Usage: Rename samples, subsamples, containers, or templates Universal: Works with any inventory item type Returns: Updated item information with new name
Input Schema
Name | Required | Description | Default |
---|---|---|---|
item_id | Yes | ||
new_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"item_id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"title": "Item Id"
},
"new_name": {
"title": "New Name",
"type": "string"
}
},
"required": [
"item_id",
"new_name"
],
"type": "object"
}