GET api/BalanceDetail?accountId={accountId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| accountId | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
BalanceData| Name | Description | Type | Additional information |
|---|---|---|---|
| Amount | unsigned integer |
None. |
|
| Locks | Collection of LockMoney |
None. |
Response Formats
application/json, text/json
Sample:
{
"Amount": 1,
"Locks": [
{
"Id": "3af6c10c-83a0-4a7e-9def-8aa7d195c885",
"Amount": 2,
"CreatedTime": "2026-09-06T21:00:18.5973298+08:00"
},
{
"Id": "3af6c10c-83a0-4a7e-9def-8aa7d195c885",
"Amount": 2,
"CreatedTime": "2026-09-06T21:00:18.5973298+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-09-06T21:00:18.5973298+08:00</d2p1:CreatedTime>
<d2p1:Id>3af6c10c-83a0-4a7e-9def-8aa7d195c885</d2p1:Id>
</d2p1:LockMoney>
<d2p1:LockMoney>
<d2p1:Amount>2</d2p1:Amount>
<d2p1:CreatedTime>2026-09-06T21:00:18.5973298+08:00</d2p1:CreatedTime>
<d2p1:Id>3af6c10c-83a0-4a7e-9def-8aa7d195c885</d2p1:Id>
</d2p1:LockMoney>
</Locks>
</BalanceData>