userLevel


사용자 레벨정보를 조회합니다.

Parameter

다음의 URL을 통해 접근 가능합니다.

HTTP GET http://api.gamekiki.com/api/v1/kiki/userLevel
HTTPS GET https://api.gamekiki.com:4443/api/v1/kiki/userLevel

Parameter Example Required Description
appId app_Bx8BoU1g00000 Required Application ID (CMS에서 확인 가능)
targetUserId test Required 조회하고자 하는 User ID

Example

보내는 메시지는 아래와 같습니다.

1
2
3
4
{
"appId": "app_Bx8BoU1g00000",
"targetUserId": "test"
}

Response

받는 값은 아래와 같습니다.

1
2
3
4
5
6
7
8
9
10
11
{
"updatedToken": "N",
"result": [
{
"userId": "test",
"userName": "test1234",
"userPoint": 2,
"levelId": "1"
}
]
}