Skip to main content
PUT
/
api
/
v1
/
dt
/
user
/
status
Control User
curl --request PUT \
  --url https://api.example.com/api/v1/dt/user/status \
  --header 'Content-Type: application/json' \
  --data '
{
  "uuid": "<string>",
  "platform_id": "<string>",
  "username": "<string>",
  "type": "<string>",
  "key": "<string>"
}
'
{
  "error": {
    "code": 0,
    "msg": "Success",
    "uuid": "e69da788a6c841d4953c475fc42bf464"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.cog888.net/llms.txt

Use this file to discover all available pages before exploring further.

CodeDescription
0Success
2Invalid parameter
19Request limit reached
20Secret key error
21Invalid username
25Type parameter error
36Server error
9999Unknown error

Body

application/json
uuid
string
required

Platform-defined unique request ID, length >= 32 and <= 128 bytes

platform_id
string
required

Platform product ID

username
string
required

User account in game (max 23 characters, lowercase letters and numbers only)

type
string
required

Control type: 0 - Enable, 1 - Disable (force disconnect online users), 2 - Suspend (do not force disconnect)

key
string
required

md5(type + username + platform secret key)

Response

Success

error
object