Action 55: Check Cash Transfer
Function Description
- Search for a certain user’s cash transfer history in a given time range.
- Maximum time range for each search is 3 months.
- Error message 6012 means that the serialNo is currently in progress.
- Error message 9015 means that the serialNo is no data.
Parameter
Parameter | Format | Mandatory | Description |
---|---|---|---|
action | Integer | Y | 55 |
ts | Long | Y | Current system time |
parent | String(50) | Y | Agent ID |
serialNo | String(50) | Y | User transaction serial number The number is defined in Action 19: Withdraw / Deposit |
Example
{
"action": 55,
"ts": 1447452951820,
"parent": "testag",
"serialNo": "2016081200105"
}
Return Results
Parameter | Format | Description |
---|---|---|
status | String(4) | Success: 0000 Error: See Error Codes in Appendix No Data: 9015 |
data | JSON Array | The returned data will be listed in the following table. |
err_text | String(255) | Error message |
Data Object
Parameter | Format | Description |
---|---|---|
uid | String(50) | Player ID |
action | String(10) | withdraw / deposit / reward |
amount | Number | Transfer Amount |
plsBalance | Number | Account Balance before Transfer |
date | String(19) | Transaction date (dd-MM-yyyy HH:mm:ss) |
pid | Integer | Transaction number |
remark | String(15) | Remark |
afterBalance | Number | Balance after deposit / withdraw |
Operation Sample
// Http Request
http://{API_Address}/apiRequest.do?dc=jb&x=udbFVt_xv0tsAmLDpz5Z3Ct4-p0gedUPdQOUWsfd6PHz9Ky-wM3mIC9El4kwl_SlX3lpraVaCLnpK0WsgKmpYTV9XpYncHzbtvn591qfaAwpGyOvsS4v1Yj7OvpRw_iU4554RuSsvHpI9jaj4XUgTK5yzb
WKEddANjAAbxF0s=
// Http Response (success)
{
"status":"0000",
"data":
[
{
"uid":"testpl01",
"action":"deposit",
"amount":100,
"plsBalance":998800,
"date":"13-02-2015 13:04:22",
"pid":11491,
"remark":"test",
"afterBalance":9988900
}
]
}
//Http Response (error)
1.
{
"status":"6012",
"err_text":"Serial no is in progress."
}
2.
{
"status":"9015",
"err_text":"Data does not exist."
}