update_transaction
Modify details of an existing transaction, including amount, description, category, date, VAT rate, sale type, supplier country, and cashflow type, using the Norman Finance MCP Server.
Instructions
Update an existing transaction.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
amount | No | ||
cashflow_type | No | ||
category | No | ||
category_id | No | ||
date | No | ||
description | No | ||
sale_type | No | ||
supplier_country | No | ||
transaction_id | Yes | ||
vat_rate | No |
Input Schema (JSON Schema)
{
"properties": {
"amount": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
],
"default": null,
"title": "Amount"
},
"cashflow_type": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Cashflow Type"
},
"category": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Category"
},
"category_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Category Id"
},
"date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Date"
},
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Description"
},
"sale_type": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Sale Type"
},
"supplier_country": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Supplier Country"
},
"transaction_id": {
"title": "Transaction Id",
"type": "string"
},
"vat_rate": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Vat Rate"
}
},
"required": [
"transaction_id"
],
"title": "update_transactionArguments",
"type": "object"
}