Query User Account Balance
Request
Add parameter in query app-key
Example:app-key: ********************
Request samples
curl --location --request GET 'http://openapi.c5game.com//merchant/account/v1/balance?app-key'
Responses
application/json data
object (UserBalanceDTO)
optionalError data,when errorCode is not equals to 0,maybe this property will have a value
errorCodeStr
string | null
optionallike the errorCode,but this property is string
{
"success": true,
"data": {
"userId": 111,
"balance": 100.21
},
"errorCode": 0,
"errorMsg": "",
"errorData": {},
"errorCodeStr": ""
}
Modified at 2023-09-29 05:59:40