Appearance
Kick out player
Optional
This APIs use to kick an ONLINE
player under your agent. If you use this API, the player were kicked out from game temporary.
Authorization
Seamless uses Basic Authentication with your agent credentials. (Authentication)
HTTP Request
POST {{ API_URL }}/seamless/kickOutPlayer
Content Type
Type: application/json
Supported products
Product ID | Product Name |
---|---|
PGSOFT | PG Soft |
Request parameter description
Property | Type | Required | Description |
---|---|---|---|
username | string | Required | Player username |
productId | string | Required | Product ID (Ref. Product List)) (Example : PGSOFT ) |
Response parameter description
Property | Type | Required | Description |
---|---|---|---|
reqId | string | Required | Request ID for each request. |
code | number | Required | Code status0 : success1 : failed. |
message | string | Required | Message description |
data | object | Required | An array of transaction data description (See more below). |
Response data
parameter description
Property | Type | Required | Description |
---|---|---|---|
status | string | Required | Success status description, for example: SUCCESS |
username | string | Required | Player username |
JSON example request:
json
{
"productId": "PGSOFT",
"username": "foobar"
}
JSON example response:
json
{
"reqId": "05e287a6-00a9-4558-9bb2-2e422494ef22",
"code": 0,
"message": "Success",
"data": {
"status": "SUCCESS",
"username": "foobar"
}
}