View the list of players.
Requests
GET {API_URL}/players
Request Parameters
Field name |
Requirement status |
Type |
Restrictions |
Description |
page_size |
N |
Integer |
10 – 1000 |
Items per page (default: 10) |
page_no |
N |
Integer |
1 – 1000 |
Page number (default: 1) |
sort_type |
N |
String |
desc / asc |
Sort by creation date (default: desc) |
Responses
Field name |
Type |
Description |
Remarks |
result |
[] Object |
|
|
result.page_count |
Integer |
Total number of pages |
|
result.page_no |
Integer |
Current page number |
|
result.page_size |
Integer |
Items per requested page |
|
result.total |
Integer |
Total number of items |
|
result.pricing |
String |
User's pricing plan (free: free / pay: paid) |
|
result.list |
[] Object |
|
|
result.list.no |
Integer |
Player number |
|
result.list.name |
String |
Player name |
|
result.list.version |
String |
SDK player version |
|
result.list.access_key |
String |
Player access key |
|
result.list.updated_at |
String |
Modification date and time |
|
result.list.created_at |
String |
Creation date and time |
|
Success code
HttpStatusCode |
Code |
Message |
200 |
200 |
ok |
Request Examples
GET /api/v1/players
HOST: vpe.apigw.ntruss.com
Content-Type: application/json
x-ncp-apigw-timestamp:1521787414578
x-ncp-iam-access-key:6uxz1nKkcYwUjWRG5Q1V7NsW0i5jErlu2NjBXXgy
x-ncp-apigw-signature-v2:iJFK773KH0WwQ79PasqJ+ZGixtpDQ/abS57WGQdld2M=
x-ncp-region_code:KR
Response examples
HTTP/1.1 200 OK
Date: Fri, 26 Feb 2021 09:53:32 GMT
Content-Type: application/json;charset=utf-8
Connection: keep-alive
Access-Control-Allow-Origin: *
x-ncp-trace-id: 36c9k60om4p3238cpmc9gm4cj4
{
"code": 200,
"message": "ok",
"result": [ {
"no": 3994,
"name": "apiguide",
"version": "latest",
"access_key": "23c6e1b8cd62a6b0f12db7920f7336f0",
"updated_at": "2023-04-13T01:34:13.000+00:00",
"created_at": "2023-04-13T01:34:13.000+00:00"
} ],
"pagination": {
"page_size": 10,
"page_no": 1,
"total": 1,
"page_count": 1
},
"pricing": "pay"
}