|
@@ -24,6 +24,7 @@
|
|
|
| user | string | Y |User ID|
|
|
|
| extension1 | string | Y |Agent Id|
|
|
|
| score | string | N |1.The updated score: If the score is less than zero, it indicates that the agent has given points to the player; , 2.if the score is greater than zero, it indicates that the agent has deducted points from the player.|
|
|
|
+ | traceid | String | Y | Unique identification code for each transaction |
|
|
|
|
|
|
|
|
|
## Example
|
|
@@ -38,6 +39,7 @@
|
|
|
user:test1
|
|
|
extension1:adminweb
|
|
|
score: -1000
|
|
|
+ traceid: bipdk81q8lqzg1jjvq6
|
|
|
```
|
|
|
|
|
|
|
|
@@ -48,7 +50,8 @@
|
|
|
|status| int32 |status code |
|
|
|
| useraddscore| double | The player changed score |
|
|
|
| beforeuserscore | double | Before the transfer, the player's score|
|
|
|
- |afteruserscore | double | After the transfer, the player's score|
|
|
|
+ |afteruserscore | double | After the transfer, the player's score|
|
|
|
+ | traceid | String | Unique identification code for each transaction |
|
|
|
|
|
|
## Success Result
|
|
|
|
|
@@ -57,7 +60,8 @@
|
|
|
"afteruserscore": 1000,
|
|
|
"beforeuserscore": 0,
|
|
|
"status": 1,
|
|
|
- "useraddscore": 1000
|
|
|
+ "useraddscore": 1000,
|
|
|
+ "traceid": "123124233"
|
|
|
}
|
|
|
```
|
|
|
|