Table of Contents
/Wallet/ProcessEDalerUri
Allows the client to process an eDaler URI.
JSON
- Request
{ "uri": Required(Str(PUri)) }
- Response (if successful)
{ "Balance": { "amount":Required(Double(PAmount)), "reserved":Required(Double(PReserved)), "currency":Required(Str(PCurrency)), "timestamp":Required(DateTime(PTimestamp)) }, "Result":Optional(PResult) }
XML
- Request
<ProcessEDalerUri xmlns="https://waher.se/Schema/BrokerAgent.xsd" uri=(Required(Str(PUri)))/>
- Response (if successful)
<ProcessResult xmlns="https://waher.se/Schema/BrokerAgent.xsd"> <Balance amount=(Required(Double(PAmount))) reserved=(Required(Double(PReserved))) currency=(Required(Str(PCurrency))) timestamp=(Required(DateTime(PTimestamp)))/> <Result><[Optional(PResult)]></Result> </ProcessResult>
Input Parameters
Parameter | Description |
---|---|
PUri |
eDaler URI to process. |
Response Parameters
Parameter | Description |
---|---|
PAmount |
Current amount of eDaler that can be used. |
PReserved |
Current amount of eDaler that has been reserved. |
PCurrency |
Currency of wallet. |
PTimestamp |
Timestamp of balance statement. |
Javascript Library
Use the following asynchronous method in the Javascript Library, to call this resource.
var Response = await AgentAPI.Wallet.ProcessEDalerUri(Uri);