Create Player
Create a new game Player Account.
API Information
- URL:
POST /v2/members - Authentication:Bearer Token
- Encryption:Requests are encrypted using AES-256-GCM; responses are returned as plaintext JSON
request
request Headers
POST /v2/members HTTP/1.1
Host: api.example.com
Content-Type: application/json
Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...
x-agentid: integratorNBTest04
x-timestamp: 1769746894501
x-nonce: 56ffd5ecd8a3a4457863a0bd7c298fb2
x-signature: 904e97bee2589b93e9747eed0346c68b23d8ff8b568dabaf4b94a5e89093df67
Request Parameters
Request parameters need to be encrypted and placed in cipherText Field。
Parameters Before Encryption
{
"username": "player001",
"Site ID": "site01"
}
Encrypted Request
{
"cipherText": "G0ZMDELeJwx+7JcIfIFOLJjkSzANPu6krGM2uw==bDUB6MvLbggJM4Df28x/41LlgIPDqPBBAylkqTdB0I78haWOdi6jV8JXAi0iL8JHq/cCPlj39Apt..."
}
| Field | Type | Required | Description |
|---|---|---|---|
username | string | Yes | Player Account, unique identifier, refer to notes for creation rules |
Site ID | string | No | Site ID, used for multi-site management |
Response
Success Response
{
"code": 0,
"message": "No error.",
"logUUID": "24cdc3b9-9fe8-44de-8391-a96863e46954"
}
Error Response
When the request fails, the corresponding error code will be returned.
Error Codes
| Code | Description | Handling Suggestion |
|---|---|---|
| 6 | The username already exist | Player Account is already in use, please use another Player Account |
| 11 | Parameters error | Please ensure the request parameters are complete and correctly formatted (username must be 1-25 alphanumeric characters) |
Error Response Example
{
"code": 6,
"message": "The username already exist.",
"logUUID": "6589bf8d-fe74-48bd-841a-71bf8f848f86"
}
{
"code": 11,
"message": "Parameters error",
"logUUID": "6589bf8d-fe74-48bd-841a-71bf8f848f86"
}
Important Notes
- Player Account Uniqueness: Each Player Account under an Agent ID must be unique
- Name Restriction: Maximum 25 characters, alphanumeric only, case-sensitive
- Site ID Restriction: Maximum 20 characters, once created, it is not easily changeable, please name and confirm carefully