Create Member
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。
Request Body Before Encryption
{
"username": "player001",
"siteId": "site01"
}
Encrypted Request Body
{
"cipherText": "G0ZMDELeJwx+7JcIfIFOLJjkSzANPu6krGM2uw==bDUB6MvLbggJM4Df28x/41LlgIPDqPBBAylkqTdB0I78haWOdi6jV8JXAi0iL8JHq/cCPlj39Apt..."
}
| Field | Type | Required | Description |
|---|---|---|---|
username | string | Yes | Player Account, Reference Notes for Important Notes |
siteId | string | No | SiteID |
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 | The username is already in use. Please choose a different username. |
| 11 | Parameters error | Ensure that all 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
- Username Uniqueness: The username must be unique under each
agentId - Name Restrictions: Maximum length of 25 characters; alphanumeric characters only; case-sensitive is allowed
- Site ID Restrictions: Maximum length of 20 characters; once created, it cannot be easily changed, so please name and confirm it carefully