新建角色¶
POST /api/v1/role/add
概述¶
新建角色
Body 请求参数¶
参数名 | 类型 | 必选 | 说明 |
---|---|---|---|
name | string | Y | 角色名 例子: 角色1号 允许为空: False 最大长度: 256 |
desc | string | 角色的描述信息 例子: CUSTOM 允许为空: False 允许为空字符串: True 最大长度: 3000 |
|
keys | array | Y | 选中的权限列表 例子: [] 允许为空: False |
参数补充说明¶
请求例子¶
curl 'https://openapi.guance.com/api/v1/role/add' \
-H 'Accept: application/json, text/plain, */*' \
-H 'Content-Type: application/json;charset=UTF-8' \
-H 'DF-API-KEY: <DF-API-KEY>' \
--data-raw '{"name":"自定义管理","desc":"test","keys":["workspace.readMember","label.labelCfgManage","log.externalIndexManage"]}' \
--compressed
响应¶
{
"code": 200,
"content": {
"createAt": 1722827399,
"creator": "wsak_xxxx32",
"declaration": {
"asd": "aa,bb,cc,1,True",
"asdasd": "dawdawd",
"business": "aaa",
"fawf": "afawf",
"organization": "64fe7b4062f74d0007b46676"
},
"deleteAt": -1,
"desc": "test",
"id": null,
"isSystem": 0,
"name": "自定义管理",
"status": 0,
"updateAt": 1722827399,
"updator": "wsak_xxxx32",
"uuid": "role_xxxx32",
"workspaceUUID": "wksp_xxxx32"
},
"errorCode": "",
"message": "",
"success": true,
"traceId": "9008386843384026938"
}