link_attachment_transaction
Associate a transaction with an attachment by providing their respective IDs. This tool streamlines financial record-keeping by enabling clear linkages between documents and transactions in Norman Finance.
Instructions
Link a transaction to an attachment.
Args:
attachment_id: ID of the attachment
transaction_id: ID of the transaction to link
Returns:
Response from the link transaction request
Input Schema
Name | Required | Description | Default |
---|---|---|---|
attachment_id | Yes | ||
transaction_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"attachment_id": {
"title": "Attachment Id",
"type": "string"
},
"transaction_id": {
"title": "Transaction Id",
"type": "string"
}
},
"required": [
"attachment_id",
"transaction_id"
],
"title": "link_attachment_transactionArguments",
"type": "object"
}