GET
/
bankaccounts
/
{bankAccountId}
/
transactions
/
{id}
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

200
application/json

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

The response is of type object.