Skip to content

Game Kick

The Game Kick endpoint allows you to forcibly terminate a player’s active session. This is useful for administrative purposes or security measures.


fetch('https://DOWINN-API/game-kick', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Api-Id': 'YOUR_SECRET_TOKEN',
'Api-Key': 'YOUR_SECRET_TOKEN'
},
body: JSON.stringify({
user_id: ''
})
})


Successful Response

interface GameKickResponse {
code: number
}


📌
For a comprehensive guide on how this works, please refer to the Common and Transfer Introduction or Seamless Introduction sections within the Introduction page.