rename_member
Update a member's name in a gathering by specifying the gathering ID, current name, and new name for accurate expense tracking and reimbursements.
Instructions
Rename an unnamed member
Input Schema
Name | Required | Description | Default |
---|---|---|---|
gathering_id | Yes | ID of the gathering | |
new_name | Yes | New name for the member | |
old_name | Yes | Current name of the member |
Input Schema (JSON Schema)
{
"properties": {
"gathering_id": {
"description": "ID of the gathering",
"type": "string"
},
"new_name": {
"description": "New name for the member",
"type": "string"
},
"old_name": {
"description": "Current name of the member",
"type": "string"
}
},
"required": [
"gathering_id",
"old_name",
"new_name"
],
"type": "object"
}