1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| ### 请求 /mp/user/sync 接口 => 成功
| POST {{baseUrl}}/mp/user/sync?accountId=1
| Content-Type: application/json
| Authorization: Bearer {{token}}
| tenant-id: {{adminTenantId}}
|
| ### 请求 /mp/user/update 接口 => 成功
| PUT {{baseUrl}}/mp/user/update
| Content-Type: application/json
| Authorization: Bearer {{token}}
| tenant-id: {{adminTenantId}}
|
| {
| "id": "3",
| "nickname": "test",
| "remark": "测试备注",
| "tagIds": [103, 104]
| }
|
|