Player Login
POST /api/server/login/${playerName}
Content-Type: application/json| Parameter | Type | Description |
|---|---|---|
| name | string | Name of the player |
| realName | string | Real Name of the player |
| uuid | string | UUID of the player |
| accountId | integer | ID of the player |
| ip | string | IP Address of the player |
{
"name": "KyleException",
"realName": "KyleException",
"uuid": "aa7e4742-979d-4bbd-a951-dcab1383aba4",
"accountId": 1,
"ip": "0.0.0.0"
}Trigger Priority Ban
POST /api/banner/trigger/${playerName}
Content-Type: application/json| Parameter | Type | Description |
|---|---|---|
| target | json | Targets Information |
| cause | string | Cause of trigger |
{
"target": {
"name": "KyleException",
"realName": "KyleException",
"uuid": "aa7e4742-979d-4bbd-a951-dcab1383aba4",
"accountId": 1,
"ip": "0.0.0.0"
},
"cause": "JOIN_GAME"
}