我的團隊列表

簡要描述
  • 我的團隊列表
請求url
  • https://www.商城域名.com/index.php?s=/api/dealer.team/list
請求方式
  • GET
是否需授權登錄
請求header
參數名 類型 是否必須 示例值 說明
storeId int 必填 10001 商城ID
platform string 必填 H5 當前請求的客戶端(APP、小程序、H5等)
Access-Token string 選填 - 當前登錄用戶的 Token
請求參數
參數名 類型 是否必須 示例值 說明
page int 選填 1 當前頁碼
返回示例
{
  "status": 200,
  "message": "success",
  "data": {
    "list": {
      "total": 1,
      "per_page": 15,
      "current_page": 1,
      "last_page": 1,
      "data": [
        {
          "id": 10008,
          "dealer_id": 10125,
          "user_id": 10132,
          "level": 1,
          "subDealer": {
            "user_id": 10132,
            "real_name": "小偉",
            "mobile": "13212341234",
            "money": "0.00",
            "freeze_money": "0.00",
            "total_money": "0.00",
            "referee_id": 10125,
            "first_num": 0,
            "second_num": 0,
            "third_num": 0
          },
          "user": {
            "user_id": 10132,
            "mobile": "132****0000",
            "nick_name": "132****0000",
            "avatar_id": 0,
            "gender": "未知",
            "country": "",
            "province": "",
            "city": "",
            "address_id": 10046,
            "balance": "9245.85",
            "points": 63,
            "pay_money": "5754.15",
            "expend_money": "1298.00",
            "grade_id": 10003,
            "platform": "H5",
            "last_login_time": 1646021959
          }
        }
      ]
    }
  }
}
返回參數
參數名 類型 示例值 說明
status int 200 請求狀態(200:請求成功;500:請求錯誤/失?。?/td>
message string success 請求結果的信息,默認為 success
data object - 返回的業務數據
data 參數
參數名 類型 示例值 說明
list object - 列表數據
data.list 參數
參數名 類型 示例值 說明
total int 1 總記錄數
per_page int 15 每頁數量
current_page int 1 當前頁碼
last_page int 1 最后頁碼
data array - 列表數組
data.list.data 參數
參數名 類型 示例值 說明
id int 10008 ID
dealer_id int 10125 分銷商ID(推薦人)
user_id int 10132 用戶ID(被推薦人)
level int 1 推薦等級
subDealer object - 分銷商信息;(如果該下級是分銷商才會存在)
user object - 用戶信息