Zvini
00:54:21

« Transaction » get

wallet/transaction/get - Returns a single existing transaction.
Method parameters:
id - The ID of the transaction to get.
Returns a JSON document of the following format:
{
id: <number> - The ID of the transaction.
amount: <number> - The amount of the transaction.
description: <string> - The description of the transaction.
insert_time: <number> - The Unix timestamp of when the transaction was created.
update_time: <number> - The Unix timestamp of when the transaction was last modified.
}
Expected errors:
TRANSACTION_NOT_FOUND - A transaction with the ID doesn't exist.