用户添加
1 功能说明
添加用户
2 接口调用说明
2.1 URL
http://yourdomain.kf5.com/api/v1/user/add
2.2 格式
JSON
2.3 HTTP请求方式
GET, POST
2.4 IP限制
无
2.5 输入参数说明
参数名称 | 是否必须 | 类型 | 描述 |
username | 是 | string | 用户帐号(邮箱地址,需要激活才能使用账号) |
name | 否 | string | 昵称 |
role | 否 | string | 角色。默认为end_user:普通用户,agent:客服,admin:管理员 |
organization_id | 否 | integer | 所属组织编号 |
phone | 否 | string | 电话 |
details | 否 | string | 详细信息 |
notes | 否 | string | 注释 |
signature | 否 | string | 用户签名 |
status | 否 | integer | 帐号状态 |
field_xxx | 否 | string | 用户自定义字段(后缀代表用户自定义字段的编号)高级版拥有此功能 |
2.6 请求示例
http://yourdomain.kf5.com/api/v1/user/add?username=your@126.com&sign=12d45c66523dd069d7c64c22fea10f34
2.7 返回参数说明
参数名称 | 说明 |
err | 返回码。0:执行成功,1:有错误 |
msg | 如果错误,返回错误信息。 |
datas | 返回数据 |
id | 用户ID编号 |
username | 用户邮箱 |
name | 昵称 |
role | 角色 |
organization_id | 所属组织编号 |
photo | 头像 |
phone | 电话 |
details | 详细信息 |
notes | 注释 |
signature | 用户签名 |
status | 帐号状态 |
field_xxx | 用户自定义字段(后缀代表用户自定义字段的编号)高级版拥有此功能 |
2.8 正确返回示例
Content-type: text/html; charset=utf-8
{
"err":0,
"msg":""
}
2.9 错误返回示例
Content-type: text/html; charset=utf-8
{
"err":1,
"msg":"参数错误"
}
3 备注
无