# 회원 정보 조회 API(v3.0)

# 소개

인증 받은 회원 본인의 정보를 출력합니다.

# 기본정보

GET /member/v3.0
Host: https://api.onstove.com (Live)
      https://api.gate8.com (Sandbox)
Content-Type: 
1
2
3
4

# Request

Name Type Required Default Value Example Description
caller-id String Y - {game_id}_SERVER API 호출자 정보
-{game_id}_HOME(공홈)
-{game_id}_SERVER(서버)
Authorization String Y Bearer {Access Token} bearer {token} 플랫폼의 API를 사용하기 위한 Web Access Token

# Response

# Body

Name Type Required Default Value Example Description
code int Y - - 응답 코드
message String Y - - 응답 메시지
value Object N - - 응답 값
properties 공통 회원정보 참고

# value

Name Type Required Default Value Example Description
member_no Long Y - 20005061986 회원 번호
nickname String Y - "STOVE20005061986" 플랫폼 닉네임
person_verify_yn String Y - "Y" 본인 인증 여부
parent_verify_yn String Y - "N" 부모 인증 여부
email_verify_yn String Y - "N" 이메일 인증 여부
country_cd String Y - "KR" 가입 국가
reg_dt Long Y - 1669863929000 가입일 (밀리초)
birth_dt Long N - 946684800000
withdraw_request_dt Long N - null 탈퇴 요청일 (밀리초)

# 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

# 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

# Return Code

HTTP Status code response_code response_message Description
200 0 Success -
200 40000 bad request 잘못된 요청 데이터
Authorization 헤더 값이 잘못된 경우
200 50000 unknown error SGS 기술PM 문의
Last Updated: 2024. 2. 20. 오전 11:15:22