概述
此接口用于查看人员数据
接口请求地址
请求方法
GET
请求参数
名称 |
类型 |
必填 |
描述 |
access_token或user_access_token |
字符 |
是 |
账户的access_token密钥,与user_access_token(string)二选一 |
返回说明
返回一个JSON对象,其中”code”为”0″即成功。”data”为全部人员数据。
返回示例
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 31 32 33 34 35 36 37 38 39
|
{ "code": 0, "msg": "Successful operation", "msg_en": "Successful operation", "data": [ { "id": 3, "serialnumber": "1", "name": "Name1", "classify": 18, "sex": 0, "age": 18, "avatar": "184", "facenumber": "", "create_time": "2022-02-08T07:49:49Z", "update_time": "2022-02-10T04:52:03Z", "status": 1, "img1": null, "img2": null, "img3": null, "img1_point": null, "img2_point": null, "img3_point": null, "pic_name": "1644223120.jpg", "cname": "Staff", "cp_name": "1531724810.png", "msgs": "v", "object_id": 1, "tag_serialnumber": "0322", "warninglevel": 0, "img1_path": null, "img2_path": null, "img3_path": null, "tag_id": 38 }, ...... ], "exe_time": "0.002053" } |