Skip to main content

Create Member

Create a new game Player Account.

API Information

  • URLPOST /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..."
}
FieldTypeRequiredDescription
usernamestringYesPlayer Account, Reference Notes for Important Notes
siteIdstringNoSiteID

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

CodeDescriptionHandling Suggestion
6The username already existThe username is already in use. Please choose a different username.
11Parameters errorEnsure 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

  1. Username Uniqueness: The username must be unique under each agentId
  2. Name Restrictions: Maximum length of 25 characters; alphanumeric characters only; case-sensitive is allowed
  3. Site ID Restrictions: Maximum length of 20 characters; once created, it cannot be easily changed, so please name and confirm it carefully