创建子账号
所属服务
pubproxy
接口方法
POST
请求url
/pubproxy?Action=CreateSubAcc&Version=2018-03-22
url 参数
参数名称 | 说明 | 参数类型 | 是否必填 | 备注 |
Action | CreateSubAcc | string | 是 | |
Version | 2018-03-22 | string | 是 | |
参数名称 | 说明 | 参数类型 | 是否必填 | 备注 |
Content-Type | application/json | string | 是 | |
post body参数
参数名称 | 说明 | 参数类型 | 是否必填 | 备注 |
Password | MD5加密后的密码(32位小写)(建议密码应该在6-16位之间)。 | string | 否 | 明文密码需要先用 MD5 加密 |
Phone | 手机号 | string | 否 | |
Email | 邮箱 | string | 否 | |
Remark | 备注 | string | 否 | |
SubAccount | 子帐号登录名(只能包含英文、数字、.、-、_)(建议6-23位小写字母/数字/中划线组成。以字母开头,字母/数字结尾) | string | 是 | |
返回参数
参数名称 | 说明 | 参数类型 | 是否必填 | 备注 |
Data | 返回创建子账号详细信息 | object | 是 | 详细信息见下表 |
Data
参数名称 | 说明 | 参数类型 | 是否必填 | 备注 |
Email | | string | 是 | |
Phone | | string | 是 | |
SubAccount | | string | 是 | |
Remark | | string | 是 | |
状态码
错误码(Code) | 错误提示(Message) | http status code | 说明 |
SubAccountParamInvalid | SubAccount Param Invalid | 400 | 子账号参数无效 |
SubAccountAlreadyExists | SubAccount Already Exists | 400 | 子账号已经存在 |
InternalServerError | Internal server error | 500 | 内部服务异常 |
AccountNotExsist | Account Not Exsist | 400 | 主账号不存在 |
PasswordParamInvalid | Password Param Invalid | 400 | 密码参数无效 |
请求示例
https://open.cn-east-1.163yun.com/pubproxy?Action=CreateSubAcc&Version=2018-03-22
-H 'Content-Type: application/json'
-d '{
"SubAccount": "test"
"Password":"e10adc3949ba59abbe56e057f20f883e",
"Phone": "15511223344",
"Email": "test@163.com",
"Remark": "test"
}'
返回示例
{
"Code": "Success",
"Message": "The Api was called successfully.",
"Data": {
"Remark": "test",
"Phone": "15511223344",
"Email": "test@163.com",
"SubAccount": "test"
}
}