25 lines
436 B
Plaintext
25 lines
436 B
Plaintext
|
|
### 示例接口测试文件
|
||
|
|
|
||
|
|
### 获取用户列表
|
||
|
|
GET https://api.example.com/users
|
||
|
|
Content-Type: application/json
|
||
|
|
|
||
|
|
### 创建新用户
|
||
|
|
POST http://101.43.95.130/usersapp/Ruilaiwechat/selectRealtimeInfoList
|
||
|
|
Content-Type: application/json
|
||
|
|
|
||
|
|
{
|
||
|
|
"page": "1"
|
||
|
|
}
|
||
|
|
|
||
|
|
### 更新用户信息
|
||
|
|
PUT https://api.example.com/users/1
|
||
|
|
Content-Type: application/json
|
||
|
|
|
||
|
|
{
|
||
|
|
"name": "John Smith"
|
||
|
|
}
|
||
|
|
|
||
|
|
### 删除用户
|
||
|
|
DELETE https://api.example.com/users/1
|