Available in Classic and VPC
Get account integration information of a user.
Request
This section describes the request format. The method and URI are as follows:
| Method | URI |
|---|---|
| GET | /v2/linkings |
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/linkings?filter=%7B%22user_id%22%3A%227e629b25-****-****-****-cf9432d1bf29%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 | - | Account integration information history ID |
username |
String | - | Integrated account ID |
provider |
String | - | Integration provider |
member_id |
Object | - | User ID information |
member_id.id |
String | - | User ID |
user_id |
String | - | User ID |
email |
String | - | Integrated account email |
createdAt |
String | - | Integration creation date and time
|
updatedAt |
String | - | Integration renewal date and time
|
deletedAt |
String | - | Deletion date and time
|
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": "TGlua2luZzo*********************************ZDE1OGU2MDA4Njc=",
"username": "*************************",
"provider": "google",
"member_id": {
"id": "TWVtYmVyOjd***********************************QzMmQxYmYyOQ=="
},
"user_id": "7e629b25-****-****-****-cf9432d1bf29",
"email": "*********@ncloud.com",
"createdAt": "2025-09-17T13:40:08+09:00",
"updatedAt": "2025-09-17T13:40:08+09:00",
"deletedAt": null
},
...
]