GET/transactions/{transaction_id}

Retrieve a transaction

Retrieves a transaction by its identifier. Use this operation to inspect the transaction amount, account, creation time, description, and source details.

1 parameter
transaction_idstringrequired
The identifier of the transaction to retrieve.

3 status codes
200Returns the transaction object, including its account, amount in the currency's minor unit, creation time, description, and source details.
account_idstringrequired
The identifier for the Account the Transaction belongs to.
amountintegerrequired
The Transaction amount in the minor unit of its currency. For dollars, for example, this is cents.
created_atstringrequired
The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which the Transaction occurred.
currencystringrequired
The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the Transaction's currency. This will match the currency on the Transaction's Account.
Allowed:USD
descriptionstringrequired
An informational message describing this transaction. Use the fields in `source` to get more detailed information. This field appears as the line-item on the statement.
idstringrequired
The Transaction identifier.
route_idstringrequired
The identifier for the route this Transaction came through. Routes are things like cards and ACH details.
route_typestringrequired
The type of the route this Transaction came through.
Allowed:account_numbercardlockbox
sourceobjectrequired
This is an object giving more details on the network-level event that caused the Transaction. Note that for backwards compatibility reasons, additional undocumented keys may appear in this object. These should be treated as deprecated and will be removed in the future.
typestringrequired
A constant representing the object's type. For this resource it will always be `transaction`.
Allowed:transaction
4XXReturned when the request results in a client error.
5XXReturned when the request results in a server error.

Error handling

The transaction_id path parameter must identify the transaction you want to retrieve.