Available in Classic and VPC
Get the list of suspended users.
Request
This section describes the request format. The method and URI are as follows:
| Method | URI |
|---|---|
| GET | /v2/memberblock |
Request headers
For information about the headers common to all GAMEPOT 3.0 APIs, see GAMEPOT 3.0 request headers.
Request query parameters
You can use the following query parameters with your request:
| Field | Type | Required | Description |
|---|---|---|---|
filter |
String | Required | Filtering criteria
|
sort |
String | Optional | Sort by
|
option |
String | Optional | Additional options: Option
|
Option
The following describes Option.
| Field | Type | Required | Description |
|---|---|---|---|
offset |
Integer | Optional | Query start offset
|
per_page |
Integer | Optional | Number of items per page
|
count |
Boolean | Optional | Whether to display the total number of response results instead of a list
|
Request example
The request example is as follows:
curl --location --request GET 'https://dashboard-api.gamepot.ntruss.com/v2/memberblock?filter=%7B%22member_id%22%3A%2232e19c61-****-****-****-840c4028aa88%22%7D&sort=%7B%22createdAt%22%3A%22-1%22%7D&option=%7B%22count%22%3Afalse%7D' \
--header 'x-api-key: {API Key}' \
--header 'x-project-id: {Project ID}' \
--header 'Accept: application/json'
Response
This section describes the response format.
Response body
The response body includes the following data:
| Field | Type | Required | Description |
|---|---|---|---|
id |
String | - | Suspended ID |
member_id |
String | - | User ID |
deleted |
Boolean | - | Suspension history deletion status
|
type |
String | - | Suspension classification
|
status |
Integer | - | Suspension status
|
message |
String | - | Reason for suspension
|
messageMulti |
Array | - | Suspension reason multilingual information: messageMulti |
startedAt |
String | - | Suspension start date and time
|
endedAt |
String | - | Suspension end date and time
|
createdAt |
String | - | Suspension history creation date and time
|
updatedAt |
String | - | Suspension history modification date and time
|
deletedAt |
String | - | Suspension history deletion date and time
|
category_id |
String | - | Suspension classification ID |
messageMulti
The following describes messageMulti.
| Field | Type | Required | Description |
|---|---|---|---|
lang |
String | - | Language code |
value |
String | - | Reason message |
default |
Boolean | - | Whether it is in default language
|
Response status codes
For information about the response status codes common to all GAMEPOT 3.0 APIs, see GAMEPOT 3.0 response status codes.
Response example
The response example is as follows:
[
{
"id": "TWVtYmVyQm******************************************NTc4ODQzYjJj",
"member_id": "32e19c61-****-****-****-840c4028aa88",
"deleted": false,
"type": "manual",
"status": 1,
"message": null,
"messageMulti": [
{
"lang": "ko",
"value": "12",
"default": true
}
],
"startedAt": "2025-07-23T00:00:00+09:00",
"endedAt": "2025-07-25T00:00:00+09:00",
"createdAt": "2025-07-24T15:56:33+09:00",
"updatedAt": "2025-07-24T15:56:33+09:00",
"deletedAt": null,
"category_id": "eade0943-****-****-****-f2b5e9852ce4"
}
]