Get Account Assets
Get the assets owned by a given account in reverse quantity order.
Request:
- requestType is getAccountAssets
- account is the account ID
- asset is an asset ID filter (optional)
- height is the blockchain height at which to retrieve balances (optional, default is the last block in the blockchain)
- includeAssetInfo is true if asset information is to be included (optional)
- requireBlock is the block ID of a block that must be present in the blockchain during execution (optional)
- requireLastBlock is the block ID of a block that must be last in the blockchain during execution (optional)
Note: If table trimming is enabled (default), the height must be within 1440 blocks of the last block.
Response:
- accountAssets (A) is an array of asset objects (unless the asset parameter is specified) with the following fields for each asset:
- quantityQNT (S) is the quantity (in QNT) of the asset
- unconfirmedQuantityQNT (S) is the unconfirmed quantity (in QNT) of the asset
- decimals (N) is the number of decimal places used by the asset (if includeAssetInfo is true)
- name (S) is the asset name (if includeAssetInfo is true)
- asset (S) is the asset ID
- lastBlock (S) is the last block ID on the blockchain (applies if requireBlock is provided but not requireLastBlock)
- requestProcessingTime (N) is the API request processing time (in millisec)