修改员工
开发中
GET
请求参数
Body 参数application/json
employee_id
string
员工id
<= 64 字符
name
string
员工姓名
<= 128 字符
job_number
string
工号
<= 64 字符
organization_id
string
组织id
id_card
string
身份证号
<= 32 字符
默认值:
sex
enum<integer>
性别
枚举值:
012
默认值:
0
birthdate
string
出生日期
entrant_date
string
入职日期
phone
string
电话
<= 20 字符
email
string
邮箱
<= 64 字符
login_account
string
资金系统登录账号
<= 64 字符
bank_account_number
string
员工银行账号
<= 64 字符
bank_account_name
string
银行账户名
<= 64 字符
bank_location_code
string
员工账号对应开户行联行号
<= 64 字符
bank_location_name
string
账号对应开户行
<= 64 字符
is_leader
enum<integer>
是否组织领导
枚举值:
01
默认值:
0
status
enum<string>
状态
枚举值:
01
默认值:
1
示例
{
"employee_id": "string",
"name": "string",
"job_number": "string",
"organization_id": "string",
"id_card": "",
"sex": 0,
"birthdate": "string",
"entrant_date": "string",
"phone": "string",
"email": "string",
"login_account": "string",
"bank_account_number": "string",
"bank_account_name": "string",
"bank_location_code": "string",
"bank_location_name": "string",
"is_leader": 0,
"status": "1"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET '' \
--header 'Content-Type: application/json' \
--data-raw '{
"employee_id": "string",
"name": "string",
"job_number": "string",
"organization_id": "string",
"id_card": "",
"sex": 0,
"birthdate": "string",
"entrant_date": "string",
"phone": "string",
"email": "string",
"login_account": "string",
"bank_account_number": "string",
"bank_account_name": "string",
"bank_location_code": "string",
"bank_location_name": "string",
"is_leader": 0,
"status": "1"
}'
返回响应
🟢200成功
application/json
Body
object {0}
示例
{}