Skip to main content
PUT
/
api
/
v1
/
dt
/
user
/
limit
Update Player Limit
curl --request PUT \
  --url https://api.example.com/api/v1/dt/user/limit \
  --header 'Content-Type: application/json' \
  --data '
{
  "uuid": "3f1e16c7-4083-4897-b40b-55b7f674f72f",
  "platform_id": "AXTES",
  "username": "player001",
  "limit_id": "1",
  "type": "2",
  "key": "abc123hash"
}
'
{
  "error": {
    "code": 0,
    "msg": "Success",
    "uuid": "3f1e16c7-4083-4897-b40b-55b7f674f72f"
  }
}

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
4Customer does not exist
19Request limit reached
20Secret key error
25Type parameter error
36Server error
41The specified bet limit is not available on the parent agent account
42Request rate too high
9999Unknown error

Body

application/json
uuid
string
required

Platform-defined unique request serial number, 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, only one account per request)

limit_id
string
required

Bet limit ID (only one ID per request)

type
string
required

Limit setting type (1: Delete, 2: Replace). Use 2 (Replace) to assign a bet limit when the player currently has none

key
string
required

md5(username + limit_id + type + platform_secret)

Response

Success

error
object