Authorization: Bearer ********************
{
"departmentVO": [
{
"departname": "某某某有限公司",
"id": "随机生成的UUID"
}
],
"email": "123456789@qq.com",
"id": "随机生成的UUID",
"mobilePhone": 123456789,
"officePhone": 123456789,
"realname": "张三",
"roleVO": [
{
"id": "随机生成的UUID",
"rolename": "财务"
}
],
"userType": "1-4 1代表 系统用户,2代表接口用户,3代表公司权限 4代表当前用户接口"
}
curl --location --request PUT '/sys-manager/modify/userdetail' \
--header 'Content-Type: application/json' \
--data-raw '{
"departmentVO": [
{
"departname": "某某某有限公司",
"id": "随机生成的UUID"
}
],
"email": "123456789@qq.com",
"id": "随机生成的UUID",
"mobilePhone": 123456789,
"officePhone": 123456789,
"realname": "张三",
"roleVO": [
{
"id": "随机生成的UUID",
"rolename": "财务"
}
],
"userType": "1-4 1代表 系统用户,2代表接口用户,3代表公司权限 4代表当前用户接口"
}'
{
"code": 10000,
"data": "string",
"message": "提示消息内容"
}