Customer Information
This API allows clients to retrieve customer information, including wallets , balance , and exchange rates
{
"message": "No Message",
"data": {
"uid": "string",
"name": "string",
"wallet": {
["CurrencyCode"]: //example EUR {
"balance": 0,
"frozenBalance": 0,
"creditBalance": 0
}
// Additional currencies can be listed here
},
"retailCurrency": "CurrencyCode", // example IRT
"exchangeRates": [
{
"targetCurrency": "string",
"rate": 0.0,
"modifiedDate": {
"_seconds": 0,
"_nanoseconds": 0
},
"baseCurrency": "string"
}
// Additional rates can be listed here
]
}
}Last updated