Skip to main content
GET
/
wallets
/
all
/
history
List Org Wallet History
curl --request GET \
  --url https://api.dfns.io/wallets/all/history \
  --header 'Authorization: Bearer <token>'
{
  "orgId": "<string>",
  "items": [
    {
      "timestamp": "<string>",
      "walletId": "<string>",
      "network": "<string>",
      "direction": "<string>",
      "from": "<string>",
      "to": "<string>",
      "amount": "<string>",
      "tokenId": "<string>",
      "asset": "<string>",
      "symbol": "<string>",
      "decimals": "<string>",
      "fee": "<string>",
      "feeSymbol": "<string>",
      "feeDecimals": "<string>",
      "txHash": "<string>"
    }
  ],
  "nextPageToken": "<string>"
}

Authentication

✅ Organization User (CustomerEmployee)
❌ Delegated User (EndUser)
✅ Service Account

Required Permissions

Wallets:Read: Always required.

Authorizations

Authorization
string
header
required

Bearer Token: Used to authenticate API requests. More details how to generate the token: Authentication flows

Query Parameters

startTime
string
required
endTime
string
required
limit
string
paginationToken
string

Response

200 - application/json

Success

  • object
  • string
orgId
string
required
items
object[]
required
nextPageToken
string
I