创建子账号

所属服务

pubproxy

接口方法

POST

请求url

/pubproxy?Action=CreateSubAcc&Version=2018-03-22

url 参数

参数名称说明参数类型是否必填备注
ActionCreateSubAccstring
Version2018-03-22string

header 参数

参数名称说明参数类型是否必填备注
Content-Typeapplication/jsonstring

post body参数

参数名称说明参数类型是否必填备注
PasswordMD5加密后的密码(32位小写)(建议密码应该在6-16位之间)。string明文密码需要先用 MD5 加密
Phone手机号string
Email邮箱string
Remark备注string
SubAccount子帐号登录名(只能包含英文、数字、.、-、_)(建议6-23位小写字母/数字/中划线组成。以字母开头,字母/数字结尾)string

返回参数

参数名称说明参数类型是否必填备注
Data返回创建子账号详细信息object详细信息见下表

Data

参数名称说明参数类型是否必填备注
Emailstring
Phonestring
SubAccountstring
Remarkstring

状态码

错误码(Code)错误提示(Message)http status code说明
SubAccountParamInvalidSubAccount Param Invalid400子账号参数无效
SubAccountAlreadyExistsSubAccount Already Exists400子账号已经存在
InternalServerErrorInternal server error500内部服务异常
AccountNotExsistAccount Not Exsist400主账号不存在
PasswordParamInvalidPassword Param Invalid400密码参数无效

请求示例

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"
  }
}