token: ********************
{
"name": "王麻子", // 姓名
"account": "wangmazi123", // 账号
"mobile": "13233332222", // 手机号
"is_enable": true, // 启用状态: true=启用
"group_id_list": [ // 选择的部门id列表
8
]
}
curl --location --request PUT 'http://cmi-api.gleg.site/api/users/21' \
--header 'Content-Type: application/json' \
--header 'token;' \
--data-raw '{
"name": "王麻子", // 姓名
"account": "wangmazi123", // 账号
"mobile": "13233332222", // 手机号
"is_enable": true, // 启用状态: true=启用
"group_id_list": [ // 选择的部门id列表
8
]
}'
{
"code": 0,
"msg": "string",
"data": [
{
"id": 0,
"company_id": 0,
"mobile": "string",
"account": "string",
"name": "string",
"is_enable": true,
"created_at": 0,
"updated_at": 0,
"deleted_at": null,
"created_by": 0,
"updated_by": 0,
"deleted_by": null
}
]
}