用户管理
更新时间:2022-11-15
获取用户列表
接口简介
获取用户列表
接口详情
请求地址
/openapi/v1/company/user?__scp__={__scp__}&searchText=&page=1&perPage=10
请求类型
GET
请求参数
参数名 | 类型 | 必填 | 描述 | 默认值 | 参考值 |
---|---|---|---|---|---|
page | Number | 否 | 第几页 | 1 | 1 |
perPage | Number | 否 | 每页条数 | 10 | 10 |
searchText | String | 否 | 搜索的用户名 | - | - |
返回正确 JSON 示例
{
status: 0,
msg: "",
data: ["test@baidu.com"] // 邮箱列表
}
返回错误 JSON 示例
{
msg: '错误详情',
status: 499,
requestId: '',
code: 'NoSuchKey'
}
添加用户列表
接口简介
添加用户列表
接口详情
请求地址
/openapi/v1/company/user?__scp__={__scp__}
请求类型
POST
请求参数
{
email: 'test@baidu.com'; // 用户邮箱
}
参数名 | 类型 | 必填 | 描述 | 默认值 | 参考值 |
---|---|---|---|---|---|
String | 是 | 用户邮箱 | - | - |
返回正确 JSON 示例
{
status: 0,
msg: "",
data: {}
}
返回错误 JSON 示例
{
msg: '错误详情',
status: 499,
requestId: '',
code: 'NoSuchKey'
}