GET api/BalanceDetail?accountId={accountId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
accountId

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

BalanceData
NameDescriptionTypeAdditional information
Amount

unsigned integer

None.

Locks

Collection of LockMoney

None.

Response Formats

application/json, text/json

Sample:
{
  "Amount": 1,
  "Locks": [
    {
      "Id": "a8589ba5-d8b8-4ef4-a752-0db3bd160110",
      "Amount": 2,
      "CreatedTime": "2026-06-30T23:16:04.2965801+08:00"
    },
    {
      "Id": "a8589ba5-d8b8-4ef4-a752-0db3bd160110",
      "Amount": 2,
      "CreatedTime": "2026-06-30T23:16:04.2965801+08:00"
    }
  ]
}

application/xml, text/xml

Sample:
<BalanceData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Desn.FastTransaction.Data">
  <Amount>1</Amount>
  <Locks xmlns:d2p1="http://schemas.datacontract.org/2004/07/Desn.FastTransaction.DataDefinition">
    <d2p1:LockMoney>
      <d2p1:Amount>2</d2p1:Amount>
      <d2p1:CreatedTime>2026-06-30T23:16:04.2965801+08:00</d2p1:CreatedTime>
      <d2p1:Id>a8589ba5-d8b8-4ef4-a752-0db3bd160110</d2p1:Id>
    </d2p1:LockMoney>
    <d2p1:LockMoney>
      <d2p1:Amount>2</d2p1:Amount>
      <d2p1:CreatedTime>2026-06-30T23:16:04.2965801+08:00</d2p1:CreatedTime>
      <d2p1:Id>a8589ba5-d8b8-4ef4-a752-0db3bd160110</d2p1:Id>
    </d2p1:LockMoney>
  </Locks>
</BalanceData>