Transfer
JDB Platform API
Player Management
Action 58: Kick out Downline Users

Action 58: Kick out Downline Users

Function Description

  • This action will work for all downline users of the parent.
  • If the player is online, he/she will receive a message.
  • If the player is playing the game, it will be terminated and settled directly.
  • If this action is working in process, it will return error code 9017.
  • Example:
    • If the parent is house account, the all downline users of the house account will be kicked out. (Include manager, master agent, agent and player)
    • If the parent is agent account, the all players of the agent account will be kicked out.

Parameter

ParameterFormatMandatoryDescription
actionIntegerY58
tsLongYCurrent system time
parentString(50)YAgent ID

Example

{
  "action": 58,
  "ts": 1447452951820,
  "parent": "testag",
}

Return Results

ParameterFormatDescription
statusString(4)Success: 0000

Error: See Error Codes in Appendix
err_textString(255)Error message

Operation Sample

// Http Request
http://{API_Address}/apiRequest.do?dc=jb&x=udbFVt_xv0tsAmLDpz5Z3Ct4-p0gedUPdQOUWsfd6PHz9Ky-wM3mIC9El4kwl_SlX3lpraVaCLnpK0WsgKmpYTV9XpYncHzbtvn591qfaAwpGyOvsS4v1Yj7OvpRw_iU4554RuSsvHpI9jaj4XUgTK5yzb
WKEddANjAAbxF0s=
 
// Http Response (success)
{
  "status":"0000"
}
 
// Http Response (error)
{
  "status":"9005",
  "err_text":"Assertion(SAML) didn't pass the timestamp validation."
}