创建应用子账号
POST
/v1/applications/{id}/accounts请求参数
Path 参数
id
string
应用id
Header 参数
Content-Type
string
必需
示例值:
application/json
Body 参数application/json
user_id
string
用户唯一标识
- 当 acc_type 为 personal 时,user_id 不填视为没有归属的子账号。
- 当 acc_type 为 shared 时,user_id 为不可填参数。
app_id
string
应用唯一标识
acc_name
string
帐号名
acc_name_displayed
string
显示名
acc_source
string
帐号来源
acc_password
string
帐号密码
acc_status
string
账号状态
0: 禁用,1: 启用,默认启用
acc_type
string
账号类型
personal: 个人账号
shared: 公共账号
默认 personal
sys_ext_props
object
系统扩展属性
free_ext_props
object
自定义扩展属性
expire_at
string
有效期
rfc3339格式,不传默认永久生效
示例
{
"user_id": "string",
"app_id": "string",
"acc_name": "string",
"acc_name_displayed": "string",
"acc_source": "string",
"acc_password": "string",
"acc_status": "string",
"acc_type": "string",
"sys_ext_props": {},
"free_ext_props": {},
"expire_at": "string"
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
id
string
子账号id
示例
未设置
最后修改时间: 2 个月前