# Member Information Retrieval API (v3.0)
# Introduction
Outputs the information of an authenticated member.
# Basic information
GET /member/v3.0
Host: https://api.onstove.com (Live)
https://api.gate8.com (Sandbox)
Content-Type:
1
2
3
4
2
3
4
# Request
# Header
Name | Type | Required | Default Value | Example | Description |
---|---|---|---|---|---|
caller-id | String | Y | - | {game_id}_SERVER | API caller information -{game_id}_HOME -{game_id}_SERVER |
Authorization | String | Y | Bearer {Access Token} | bearer {token} | Web Access Token to use the platform's APIs. |
# Response
# Body
Name | Type | Required | Default Value | Example | Description |
---|---|---|---|---|---|
code | int | Y | - | - | Response code |
message | String | Y | - | - | Response message |
value | Object | N | - | - | Response value properties See common member properties |
# value
Name | Type | Required | Default Value | Example | Description |
---|---|---|---|---|---|
member_no | Long | Y | - | 20005061986 | Member number |
nickname | String | Y | - | "STOVE20005061986" | Platform nickname |
person_verify_yn | String | Y | - | "Y" | Person verified or not |
parent_verify_yn | String | Y | - | "N" | Parent verified or not |
email_verify_yn | String | Y | - | "N" | Whether to verify email |
country_cd String | Y | - | "KR" | Country of registration | |
reg_dt | Long | Y | - | 1669863929000 | Date of registration (in milliseconds) |
birth_dt | Long | N | - | 946684800000 | |
withdraw_request_dt | Long | N | - | null | Withdrawal request date (milliseconds) |
# Sample
# Request
curl --location --request GET 'https://api.onstove.com/member/v3.0' \
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiJ9.eyJleHBpcmVfdGltZSI6MTY1MTY3MTY4NDUyNywibWVtYmVyX25vIjoyMDAwNTA2MTk4NiwiYXBwbGljYXRpb25fbm8iOjEwMDAyfQ.lVXx2gL-7keAs42wFDZLSz4n505pxGmFz_W_QPyiDHqkrjLMq7a7BogBQLMYYLbxMLRulHZdtfUb4SaWQKcElyC3QZZEv3WG95nISwTXwfeRPwSSkIsBp21H_Xoexg7kYb2q1ZT1CAgLKh_EQgnq0bAkWc3kyy2Ct93XPS3SzMz2vzhciLScXgjLeOZDe32TOjkbf9oWHN_eaeWTvvvinVlqPD1FcvLYJi0O22Y8ZHhGy8PBCnUeRcrGX3zb_s-s'
1
2
3
2
3
# Response
{
"code": 0,
"message": "success",
"value": {
"member_no": 20005061986,
"nickname": "STOVE20005061986",
"person_verify_yn": "N",
"parent_verify_yn": "N",
"email_verify_yn": "Y",
"country_cd": "KR",
"reg_dt": 1569531390000,
"birth_dt": null,
"withdraw_request_dt": null
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Return Code
HTTP Status code | response_code | response_message | Description |
---|---|---|---|
200 | 0 | Success | - |
200 | 40000 | bad request | bad request data Authorization header value is invalid |
200 | 50000 | unknown error | Contact STOVE TechPM |