Skip to main content
GET
/
bankaccounts
/
{bankAccountId}
/
transactions
/
{id}
Get a bank account transaction
curl --request GET \
  --url https://api.smokeball.com/bankaccounts/{bankAccountId}/transactions/{id} \
  --header 'Authorization: <api-key>' \
  --header 'x-api-key: <api-key>'
{
  "href": "<string>",
  "relation": "<string>",
  "method": "GET",
  "self": {
    "id": "<string>",
    "href": "<string>",
    "relation": "<string>",
    "method": "GET"
  },
  "id": "64818ee0-c7b4-46ec-862e-514d8b29540a",
  "matterId": "da4e7fd1-5394-4ca9-b1c6-e18c4e2bf262",
  "payorId": "<string>",
  "type": "Deposit",
  "amount": 102.65,
  "effectiveDate": "2023-11-07T05:31:56Z",
  "reference": "<string>",
  "reason": "<string>",
  "description": "<string>",
  "note": "<string>"
}

Authorizations

x-api-key
string
header
required
Authorization
string
header
required

Path Parameters

id
string
required
bankAccountId
string
required

Response

When request is successful. Returns a 'Transaction' object.

href
string | null
relation
string | null
method
string | null
default:GET
self
object
id
string | null

Unique identifier of the transaction.

Example:

"64818ee0-c7b4-46ec-862e-514d8b29540a"

matterId
string | null

Unique identifier of the associated matter.

Example:

"da4e7fd1-5394-4ca9-b1c6-e18c4e2bf262"

payorId
string | null

Unique identifier of the associated contact.

type
string | null

The type of the transaction.

Possible values: Deposit, DepositReversal, InvoicePayment, InvoicePaymentReversal, VendorPayment, VendorPaymentReversal Transfer, BankFees, BankFeesReversal, Interest, InterestReversal.

Example:

"Deposit"

amount
number

The amount of the transaction in dollars. Limited to 2 decimal places (cents).

Example:

102.65

effectiveDate
string<date-time>

Date of the transaction.

reference
string | null

Reference for the transaction.

reason
string | null

Reason for the transaction.

description
string | null

Description of the transaction.

note
string | null

Note for the transaction (for internal use).