Skip to main content

Lock Member

1. Lock Member

API Path

  • POST
  • /api/member/lock

Request Parameters

ParameterNameTypeRequiredDescription
agent_idMerchant IDstringRequiredMerchant ID
user_idMerchant User IDstringRequiredMerchant User ID
statusLock StatusstringRequiredActive: Normal, LockBet: Bet Prohibited, LockAll: Bet and Login Prohibited
timestampCurrent TimestampintRequiredTimestamp when calling the API (in milliseconds, valid for ten minutes)
signSignaturestringRequiredSee API documentation for signature algorithm

Response Parameters

ParameterNameTypeDescription
codeResponse CodeintError Code
messageResponse MessagestringError Message

Request Example

curl --location 'https://staging.aig1234.com/api/member/lock' \
--header 'Content-Type: application/json' \
--data '{
"agent_id": "agent001",
"user_id": "testUid03",
"status": "LockAll",
"timestamp": 1732589849000,
"sign": "4de30b101a5f786de48d1c7744941b86"
}'

Response Example

{
"code": 200,
"message": "success",
"data": {}
}

Error Codes

200 Success
408000 Request Parameter Error
408003 Whitelist Restriction
408004 API Rate Limit
600100 Invalid Signature
700101 Merchant Not Found
700103 Member Not Found
700105 Lock Member Failed