rewardList


리워드 정보를 조회합니다.

Parameter

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

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

Parameter Example Required Description
appId app_Bx8BoU1g00000 Required Application ID (CMS에서 확인 가능)
token eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.ey….. Optional login token
userId test Optional 로그인 User ID

Example

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

1
2
3
4
5
{
"appId": "app_Bx8BoU1g00000",
"token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.ey.....",
"userId": "test"
}

Response

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

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"updatedToken": "N",
"token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.ey.....",
"result": [
{
"actName": "로그인",
"actDesc": "",
"rewKind": "P",
"rewardValue": "1",
"restricted": "1",
"badgeImg": null
},
{
"actName": "상품추천 클릭",
"actDesc": "",
"rewKind": "P",
"rewardValue": "1",
"restricted": "5",
"badgeImg": null
},
{
"actName": "룰렛 실행",
"actDesc": "",
"rewKind": "P",
"rewardValue": "1",
"restricted": "1",
"badgeImg": null
}
]
}