Skip to main content

Overview

Allows the client to retrieve information about the current state of its wallet.

HTTP request

POST /Agent/Wallet/GetBalance

Authentication

Requires a valid JWT bearer token.

Request (JSON)

{
}

Response (JSON)

{
	"amount":Required(Double(PAmount)),
	"reserved":Required(Double(PReserved)),
	"currency":Required(Str(PCurrency)),
	"timestamp":Required(DateTime(PTimestamp))
}

Response parameters

ParameterDescription
PAmountCurrent amount of eDaler that can be used.
PReservedCurrent amount of eDaler that has been reserved.
PCurrencyCurrency of wallet.
PTimestampTimestamp of balance statement.

Notes

This endpoint uses the request schema notation described in Pattern matching.