You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
494 B
34 lines
494 B
2 years ago
|
|
||
|
#
|
||
|
## 添加用户信息
|
||
|
|
||
|
**URL:** `/api/user/`
|
||
|
|
||
|
**Type:** `GET`
|
||
|
|
||
|
|
||
|
**Content-Type:** `application/x-www-form-urlencoded;charset=UTF-8`
|
||
|
|
||
|
**Description:** 添加用户信息
|
||
|
|
||
|
|
||
|
|
||
|
**Query-parameters:**
|
||
|
|
||
|
| Parameter | Type | Required | Description | Since |
|
||
|
|-----------|------|----------|-------------|-------|
|
||
|
|name|string|false|姓名|-|
|
||
|
|age|string|false|年龄|-|
|
||
|
|
||
|
|
||
|
**Request-example:**
|
||
|
```
|
||
|
curl -X GET -i /api/user/?name=doyle.grady&age=jpmmeq
|
||
|
```
|
||
|
|
||
|
**Response-example:**
|
||
|
```
|
||
|
Return void.
|
||
|
```
|
||
|
|