Verify Game Credentials

The Verify Game Credentials Endpoint is used to get the user credentials such as user_id and server.

Service Endpoints

Endpoint

POST /api/verify-credentials

Request Header

Authorization: Bearer <your_jwt_token_here>

Content-Type: application/json

Request Parameters

Name

Type

Required?

Description

product_id

string

Yes

ID of the product

user_id

string

Yes

User ID of the account to be reloaded

server

string

No

Server of the account to be reloaded.

special_field_A

string

Optional

Additional game-specific field (e.g., character name). *Required for certain games that need this field for validation

Sample Request (Games with servers)

{
  "product_id": "GENSH",
  "user_id": "883xxxxx",
  "server": "Asia"
}

Sample Request (Games without servers)

{
  "product_id": "GENSH",
  "user_id": "883xxxxx",
}

For games requiring special field A (e.g., character name):

{
  "product_id": "RIAP",
  "user_id": "player123",
  "server": "US",
  "special_field_A": "MyCharacterName"
}

Sample Response

{
  "valid": true,
  "message": "Credentials are valid"
}