List action logs

Retrieve a paginated list of blockchain action execution logs. This endpoint provides access to detailed information about action processing including status, wallet interactions, batch associations, and execution timestamps. Action logs can be filtered by various criteria including action ID, batch ID, wallet ID, object ID, signer, and status.

GET
/ebus/action-logs
AuthorizationBearer <token>

In: header

Query Parameters

id?string

Filter resources by their unique identifier

org_id?string

Filter resources by the organization they belong to

limit?integer

How many items to return at one time (max 100)

Formatint64
autocomplete?string

Search term for autocomplete functionality

next?string

Pagination token for retrieving the next page of results

order?string

Sort order for the results (ascending or descending)

Value in"asc" | "desc"
sortBy?string

Field name to sort the results by

action_id?string

Filter logs by action ID

hash?string

Filter logs by transaction hash

batch_id?string

Filter logs by batch ID

wallet_id?string

Filter logs by wallet ID

object_id?string

Filter logs by object ID

signer?string

Filter logs by signer address

status?string

Filter logs by execution status

when_created[$gt]?string

Filter logs created after this date and time

Formatdate-time
when_created[$lt]?string

Filter logs created before this date and time

Formatdate-time
when_created[$gte]?string

Filter logs created on or after this date and time

Formatdate-time
when_created[$lte]?string

Filter logs created on or before this date and time

Formatdate-time

Response Body

application/json

application/json

application/json

curl -X GET "https://api-testnet.dual.network/ebus/action-logs"
{
  "action_logs": [
    {
      "id": "string",
      "batch_id": "string",
      "wallet_id": "string",
      "name": "string",
      "alias": "string",
      "params": {
        "id": "string",
        "template_id": "string",
        "num": 0,
        "to": "string",
        "data_hash": "string"
      },
      "message_hash": "string",
      "signer": "string",
      "public_key": "string",
      "signature": "string",
      "hash": "string",
      "affected_objects": [
        {
          "id": "string",
          "template_id": "string",
          "prev_state_hash": "string",
          "next_state_hash": "string",
          "prev_integrity_hash": "string",
          "integrity_hash": "string",
          "state_change_id": "string",
          "change_type": "string"
        }
      ],
      "status": "pending",
      "base_fee": "string",
      "base_fee_wei": "string",
      "dynamic_fee": "string",
      "dynamic_fee_wei": "string",
      "token_price": "string",
      "total_fee": "string",
      "total_fee_wei": "string",
      "nonce": 0,
      "permit": {
        "commitment": "string",
        "scope": "string",
        "nonce": 0,
        "recipient": "string",
        "deadline": 0,
        "signature": "string"
      },
      "access": {
        "type": "public",
        "whitelist": [
          "string"
        ],
        "token": {
          "property1": 0,
          "property2": 0
        },
        "object_id": "string",
        "merkle_root": "string",
        "merkle_proof": [
          "string"
        ]
      },
      "version": 0,
      "when_modified": "2019-08-24T14:15:22Z",
      "when_created": "2019-08-24T14:15:22Z"
    }
  ],
  "next": "string"
}
{
  "code": 0,
  "message": "string",
  "details": {}
}
{
  "code": 0,
  "message": "string",
  "details": {}
}