v1

latestOpenAPI 3.1.02026-07-26165182724.7 KB
wallets

Get Account By Id

Fetch an account with an account Id

post/business/get/account

Request body

businessIdstring uuid required

Unique Id of the business for whom this wallet is being created

accountIdstring required

The unique ID of the account that belongs to the businessId

Example request

{
  "accountId": "02c57ad845ee0b73d49de91c2d151b24"
}

Response

success

accountIdstring
parentWalletIdstring
currencystring
ownerIdstring
ownerTypestring
createdAtstring date-time

RFC 3339 format

linkedCardIdstring
statusstring
permissionsstring[]
enrichedboolean
parentApplicationIdstring
syncedOwnerIdstring
accountPathstring
multiChainSupportboolean
linkedBankAccountIdstring

Example response

{
  "accountId": "02c57ad845ee0b73d49de91c2d151b24",
  "parentWalletId": "700f6943-8dda-4d0e-b9d2-e3d5ba8b43f9",
  "currency": "BTC",
  "ownerId": "8ae384b7-ce6b-4b00-a4ec-1bcb9a5e5d1d",
  "ownerType": "BUSINESS",
  "createdAt": "2024-07-25T06:49:13.537Z",
  "availableBalance": {
    "amount": "0",
    "currency": "satoshis",
    "hAmount": "0.00000000",
    "fiatEquivalentBalance": "0",
    "fiatCurrency": "EUR",
    "hFiatEquivalentBalance": "0",
    "rate": "59317"
  },
  "linkedCardId": "UNLINKED",
  "status": "ACTIVE",
  "permissions": [
    "CUSTODY",
    "TRADE",
    "INTER",
    "INTRA"
  ],
  "parentApplicationId": "e15303cc-1cdf-430a-8192-c52190b2b891",
  "syncedOwnerId": "8ae384b7-ce6b-4b00-a4ec-1bcb9a5e5d1d",
  "accountPath": "700f6943-8dda-4d0e-b9d2-e3d5ba8b43f9:BTC",
  "blockchainNetworks": [
    {
      "name": "Bitcoin Testnet 3"
    }
  ]
}