transfer_all_assets
Move all assets from one user to another with structured input, ensuring streamlined ownership transitions.
Instructions
Transfer all assets from one user to another
Input Schema
Name | Required | Description | Default |
---|---|---|---|
new_owner_id | Yes | ||
user_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"new_owner_id": {
"title": "New Owner Id",
"type": "string"
},
"user_id": {
"title": "User Id",
"type": "string"
}
},
"required": [
"user_id",
"new_owner_id"
],
"title": "transfer_all_assetsArguments",
"type": "object"
}