## 用戶登錄
**收費方式**:`免費`
**接口地址**:`/api/v1/user/login`
**請求方式**:`POST`
**請求數據類型**:`application/json`
**響應數據類型**:`*/*`
**接口描述**:<p>用戶登錄,登錄后獲得 `qd-key`參數作為接口請求唯一標識放在`header`頭中</p>
**請求示例**:
```javascript
{
"email": "",
"password": ""
}
```
**請求參數**:
**請求參數**:
| 參數名稱 | 參數說明 | 請求類型 | 是否必須 | 數據類型 | schema |
| -------- | -------- | ----- | -------- | -------- | ------ |
|apiUserLoginPO|apiUserLoginPO|body|true|ApiUserLoginPO|ApiUserLoginPO|
|  email|||true|string||
|  password|||true|string||
**響應狀態**:
| 狀態碼 | 說明 | schema |
| -------- | -------- | ----- |
|200|OK|Result?ApiUserVO?|
|201|Created||
|401|Unauthorized||
|403|Forbidden||
|404|Not Found||
**響應參數**:
| 參數名稱 | 參數說明 | 類型 | schema |
| -------- | -------- | ----- |----- |
|data||ApiUserVO|ApiUserVO|
|  create_at||string(date-time)||
|  email|用戶登錄郵箱|string||
|  head_img|頭像地址|string||
|  id|用戶ID|string||
|  nickname|昵稱|string||
|  qd-key|當前使用的秘鑰|string||
|  status|用戶狀態 10正常 20禁用|string(byte)||
|  total_call_num|api調用次數|integer(int32)||
|  updated_at||string(date-time)||
|  used_call_num|已使用次數|integer(int32)||
|error_code|響應碼 (非0即異常)|integer(int32)|integer(int32)|
|message|響應消息|string||
|meta||ApiUserVO|ApiUserVO|
|  create_at||string(date-time)||
|  email|用戶登錄郵箱|string||
|  head_img|頭像地址|string||
|  id|用戶ID|string||
|  nickname|昵稱|string||
|  qd-key|當前使用的秘鑰|string||
|  status|用戶狀態 10正常 20禁用|string(byte)||
|  total_call_num|api調用次數|integer(int32)||
|  updated_at||string(date-time)||
|  used_call_num|已使用次數|integer(int32)||
**響應示例**:
```javascript
{
"data": {
"create_at": "",
"email": "",
"head_img": "",
"id": "",
"nickname": "",
"qd-key": "",
"status": "",
"total_call_num": 0,
"updated_at": "",
"used_call_num": 0
},
"error_code": 0,
"message": "success",
"meta": {
"create_at": "",
"email": "",
"head_img": "",
"id": "",
"nickname": "",
"qd-key": "",
"status": "",
"total_call_num": 0,
"updated_at": "",
"used_call_num": 0
}
}
```