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.

Sample Request (Games with servers)

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

Sample Request (Games without servers)

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

Sample Response

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