record_payment
Track payments and reimbursements for social events by logging member contributions with gathering ID, member name, and amount to simplify balance settlements.
Instructions
Record a payment made by a member
Input Schema
Name | Required | Description | Default |
---|---|---|---|
amount | Yes | Amount paid (negative for reimbursements) | |
gathering_id | Yes | ID of the gathering | |
member_name | Yes | Name of the member making the payment |
Input Schema (JSON Schema)
{
"properties": {
"amount": {
"description": "Amount paid (negative for reimbursements)",
"type": "number"
},
"gathering_id": {
"description": "ID of the gathering",
"type": "string"
},
"member_name": {
"description": "Name of the member making the payment",
"type": "string"
}
},
"required": [
"gathering_id",
"member_name",
"amount"
],
"type": "object"
}