update_manual_crypto
Update the balance of a manually-tracked cryptocurrency asset in your LunchMoney financial data to maintain accurate portfolio tracking.
Instructions
Update a manually-managed cryptocurrency asset balance
Input Schema
Name | Required | Description | Default |
---|---|---|---|
input | Yes |
Input Schema (JSON Schema)
{
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"balance": {
"description": "Updated balance of the crypto asset",
"type": "number"
},
"crypto_id": {
"description": "ID of the crypto asset to update",
"type": "number"
}
},
"required": [
"crypto_id"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}