Get Transaction Logs For Account

Parameters

Required ParamPurposeRequirement

account_id

The account id to scan for transaction logs

Account must exist in the database

Optional ParamPurposeRequirement

offset

The pagination offset. Results start at the offset index. Defaults to 0.

limit

Limit for the number of results. Defaults to 100

min_block_index

The minimum block index to find transaction logs from

max_block_index

The maximum block index to find transaction logs from

Example

{
  "method": "get_transaction_logs_for_account",
  "params": {
    "account_id": "b59b3d0efd6840ace19cdc258f035cc87e6a63b6c24498763c478c417c1f44ca",
    "offset": "2",
    "limit": "1"
  },
  "jsonrpc": "2.0",
  "id": 1
}

Last updated