GET
/
v0
/
source-accounts
/
{source_account_id}
/
transactions
/
{transaction_id}

Authorizations

Authorization
string
headerrequired

The access token received from the authorization server in the OAuth 2.0 flow.

Headers

teal-instance-id
string
required

The Teal instance ID

Path Parameters

source_account_id
string
required

The Source Account ID.

transaction_id
string
required

The Transaction ID.

Query Parameters

expand
enum<string>[] | null

Comma-separated list of Transaction expand paths.

Available options:
ledger,
line_entry,
journal_entry,
opposing_line_entries,
opposing_line_entries.ledger,
transfer,
transfer.matched_transaction,
transfer.matched_transaction.ledger,
transfer.from_journal_entry,
transfer.to_journal_entry

Response

200 - application/json
id
string
required

The unique ID of the object. This is used as an idempotency key to prevent duplicates. This is manually set as part of the create transactions request. If the transaction is created via a data integration, Plaid for example, it will be set to the transaction_id to enforce idempotency with the data source.

amount
number
required

The value of the transaction in decimal dollar cents.

datetime
string
required

The UTC datetime that the Transaction was created. This will never be before an Instance's entries_start date. When importing transactions, transactions whose datetime is before the Instance’s entries_start date will be skipped. Other transactions will be processed as normal.

description
string
required

An arbitrary string on the object, useful for displaying information to the user.

metadata
object | null

Arbitrary structured information about the transaction. This could be location of the transaction to display to the user or vendor information to use as part of a Platform or Instance categorization rule. Teal does not use metadata for any accounting purposes.

categorization_method
enum<string> | null

How the Transaction was assigned its category.

See the categorization guide for more details.

Available options:
ai,
rules,
similarity,
transfer_between_accounts,
uncategorized,
user
posted_status
enum<string>
required

Indicates if the corresponding journal entry and line entries for the transaction have been have been created. deleted indicates that the transaction is posted but the corresponding journal entry and line entries have been deleted.

Available options:
not_posted,
posted,
deleted
review_status
enum<string>
required

Indicates if the transaction has been reviewed. See the reviewing transactions for steps on how to use this.

Available options:
unreviewed,
reviewed
journal_entry_id
string | null

The ID of the Journal Entry that the Transaction's Line Entry is associated with.

journal_entry
object | null

The transaction's Journal Entry. Included in expanded responses.

source_account_id
string
required

The ID of the transaction source account where the transaction is stored.

ledger_id
string | null

The ID of the financial account ledger associated with the Transaction.

ledger
object | null

The transaction's ledger. Included in expanded responses.

line_entry_id
string | null

The ID of the financial account ledger associated with the Transaction.

line_entry
object | null

The transaction's Line Entry. Included in expanded responses.

opposing_line_entry_ids
string[] | null

A list of IDs of all the Line Entries objects in the journal entry with the opposite debit_credit status. For example if the Transaction's line entry is a debit this opposing line entries will be credit line entries.

opposing_line_entries
object[] | null

The transaction's opposing Line Entry. Included in expanded responses.

tags
object[] | null

A list of all the Tags associated with the Transaction, if any. Note that Tags are not transitive and the tags on a Transaction can be different than those on its line entry or entires.

personal
boolean
required

Whether the transaction is a non-business personal transaction.

transfer_id
string | null

The ID of the Transfer

transfer
object | null

The transaction's ledger. Included in expanded responses.