Authorization: ********************curl --location --request GET 'http://perfit-api.test.muke.design/api/admin/users/' \
--header 'Authorization: Bearer <token>'{
"code": 200,
"message": "success",
"data": {
"user": {
"id": 1,
"name": "张三",
"email": "zhangsan@example.com",
"phone": "13800138000",
"avatar": "https://example.com/avatars/1.jpg",
"status": 1,
"created_at": "2024-01-01T10:00:00Z"
},
"profile": {
"id": 1,
"user_id": 1,
"real_name": "张三",
"gender": "male",
"birthday": "1990-01-01",
"height": 175.5,
"weight": 70
},
"roles": [
{
"id": 1,
"name": "会员",
"slug": "member"
}
]
}
}