App 별 총/금일 누적 포인트 리스트 조회
GET
https://{dashboard-domain}/v1.0/db/me/point/list
Headers
Name
Type
Description
Authorization*
string
Bearer {{web-access-token}}
{
"return": 0,
"message": "success",
"value": [
{
"app_id": 1,
"point_id": 1,
"quantity": 999656,
"today_exchange_acq_quantity": 9999,
"today_exchange_cnsm_quantity": -10000,
"reset_date": "2022-02-17T00:00:00Z"
},
{
"app_id": 2,
"point_id": 2,
"quantity": 0,
"today_exchange_acq_quantity": 0,
"today_exchange_cnsm_quantity": 0,
"reset_date": "2022-02-15T00:00:00Z"
},
{
"app_id": 3,
"point_id": 3,
"quantity": 500,
"today_exchange_acq_quantity": 500,
"today_exchange_cnsm_quantity": 0,
"reset_date": "2022-02-17T00:00:00Z"
}
]
}
curl --location --request GET 'https://{dashboard-domain}/v1.0/db/me/point/list' \
--header 'Authorization: Bearer eyJhbGciOiJ...'
Last updated