/v1/player/create

Create a player to out API system

POST/v1/player/create

Links an external player (identified by a unique ID such as id or playername on operator side) to our API system. If the player does not exist in our system, a new profile will be created. This is required before the player launches games. playerCode which is a unique number issued in our API system will be assigned to the player and returned in the response.

Headers

Name
Value

Authorization

Bearer <API_TOKEN>

Content-Type

application/json

Accept

application/json

Body

{
  "playerExternalId": "playerId_onOperatorSide"
}
Key
Data Type
Description
Mandatory

playerExternalId

string

Unique player identifier from the operator’s system, used to link and identify the player in our platform

Required

Response

{
  "success": true,
  "message": "OK",
  "data": {
    "playerCode": 100000121
  }
}
Key
Data Type
Description

success

boolean

Indicates whether the request was successfully processed

message

string

Response message describing the result

data.playerCode

number

Unique integer identifier assigned to the player within our system

Last updated