查询批量创建用户结果
一、接口URL
/umsopenapi/batch/user/get
二、功能
查询批量创建用户结果
三、请求参数
http header 请求参数
名称 | 类型 | 是否必传 | 传参方式 | 说明 |
---|---|---|---|---|
token | String | true | http header | 调用全时API的身份验证token |
http body 请求参数
名称 | 类型 | 是否必传 | 传参方式 | 说明 |
---|---|---|---|---|
batchId | Long | true | RequestBody | 批次id |
四、请求体
{
"batchId": "9c5e5441cdf6b0955493ca479d50d72e"
}
五、返回参数
名称 | 类型 | 说明 |
---|---|---|
code | Integer | 结果码,0: 成功, 非0:失败 (具体描述见错误码表) |
data | json | 返回数据,部门id |
message | String | 错误描述 |
requestId | String | 请求唯一ID。查询接口日志时需要,建议打印日志 |
data
名称 | 类型 | 是否必传 | 说明 |
---|---|---|---|
status | Int | true | 执行状态.0:进行中,1:已结束-全部成功,2:已结束-部分成功 |
successData | json | true | 成功数据 |
failData | json | true | 失败数据 |
六、返回体
{
"code": 0,
"data":{
"status": 2,
"successData":[
{
"userId":12421243,
"email": "test@quanshi.com",
"mobile": "13912345678",
"name": "王小明",
"position": "软件工程师",
"office": "苏州",
"organizationId": 34253432
}
],
"failData":[
{
"email": "test2@quanshi.com",
"mobile": "13912345679",
"name": "王小明2",
"position": "软件工程师",
"office": "苏州",
"organizationId": 34253431
}
]
},
"message": "success",
"requestId": "openapi-ums-165-17e9061a-adc5-4392-b160-0305fb65a0f5"
}