/v1/game/kick

Forcefully terminate a player's active game session

POST /v1/game/kick

This endpoint allows an operator to forcibly close a player's active game session. This is useful in cases of inactivity, security concerns, or manual overrides.

Headers

Name
Value

Authorization

Bearer <API_TOKEN>

Content-Type

application/json

Accept

application/json

Request Body

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

playerExternalId

string

Unique player identifier on the operator’s system

Required

Response

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

success

boolean

Indicates whether the request was processed successfully

message

string

Result message of the request

Last updated