Get Friend Data
Description
取得好友資料。
Resource
GET /v1/user/friend_data
Authorization
採用 OAuth 2.0 Bearer Token,詳細使用流程請參考 Auth Login。
Response
{
"friend_data": [
{
"friend_name": "A",
"join_date": "2021-07-06 02:55:03",
"recommended_event": "推薦禮",
"send_type": "條件不符"
},
{
"friend_name": "B",
"join_date": "2021-07-06 02:55:03",
"recommended_event": "推薦禮",
"send_type": "已發送"
},
{
"friend_name": "C",
"join_date": "2021-07-06 02:55:03",
"recommended_event": "首購禮",
"send_type": "發送失敗"
},
{
"friend_name": "D",
"join_date": "2021-07-06 02:55:03",
"recommended_event": "首購禮",
"send_type": "已過期"
}
]
}
Response Body
| Name | Type | Description |
|---|---|---|
| name | string | 會員姓名 |
| join_date | string | 加入日期 |
| recommended_event | string | 推薦事件 |
| send_type | string | 發送狀態 |