remove_member
Remove a member from a gathering by specifying the gathering ID and member name, ensuring accurate tracking of group expenses and reimbursements.
Instructions
Remove a member from a gathering
Input Schema
Name | Required | Description | Default |
---|---|---|---|
gathering_id | Yes | ID of the gathering | |
member_name | Yes | Name of the member to remove |
Input Schema (JSON Schema)
{
"properties": {
"gathering_id": {
"description": "ID of the gathering",
"type": "string"
},
"member_name": {
"description": "Name of the member to remove",
"type": "string"
}
},
"required": [
"gathering_id",
"member_name"
],
"type": "object"
}