Skip to main content

Overview

Allows the client to process an eDaler URI.

HTTP request

POST /Agent/Wallet/ProcessEDalerUri

Authentication

Requires a valid JWT bearer token.

Request (JSON)

{
	"uri": Required(Str(PUri))
}

Input parameters

ParameterDescription
PUrieDaler URI to process.

Response (JSON)

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

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.