CreateGroup - 创建代码组

通过 OpenAPI 创建代码组。

适用版本

企业标准版

服务接入点与授权信息

请求语法

POST https://{domain}/oapi/v1/codeup/organizations/{organizationId}/groups

请求头

参数

类型

是否必填

描述

示例值

x-yunxiao-token

string

个人访问令牌。

pt-0fh3****0fbG_35af****0484

请求参数

参数

类型

位置

是否必填

描述

示例值

organizationId

string

path

组织 ID。

60de7a6852743a5162b5f957

-

object

body

avatar

string

body

代码组头像地址。

https://tcs-devops.aliyuncs.com/thumbnail/112afcb7a6a35c3f67f1bea827c4/w/100/h/100

description

string

body

代码组描述内容,最长不差过65535个字符。

描述信息的具体内容"

name

string

body

代码组名称。

test-create-group

parentId

integer

body

代码组父路径 ID,若为空,则创建在组织路径下。

26842

path

string

body

代码组路径。

test-create-group

visibility

string

body

代码组的可见性,包括{private-私有,internal-组织内公开,public-公开}。

private

请求示例

curl -X 'POST' \
  'https://test.rdc.aliyuncs.com/oapi/v1/codeup/organizations/{organizationId}/groups' \
  -H 'Content-Type: application/json' \
  -H 'x-yunxiao-token: pt-0fh3****0fbG_35af****0484' \
  --data '
    {
        "avatar": "https://tcs-devops.aliyuncs.com/thumbnail/112afcb7a6a35c3f67f1bea827c4/w/100/h/100",
        "description": "测试验证",
        "name": "test-create-group",
        "parentId": 0,
        "path": "test-create-group",
        "visibility": "private"
    }'

返回参数

参数

类型

描述

示例值

-

object

avatarUrl

string

头像地址。

https://tcs-devops.aliyuncs.com/thumbnail/112afcb7a6a35c3f67f1bea827c4/w/100/h/100

description

string

代码组描述信息。

描述信息的具体内容"

id

integer

代码组 ID,也可作为代码空间 ID 使用。

18685

name

string

代码组名称。

test-create-group

nameWithNamespace

string

代码组完整名称。

codeup-test-org / test-create-group (斜杠两侧有空格)

ownerId

integer

代码组创建者。

19230

parentId

integer

上级路径的 ID。

26842

path

string

代码组路径。

test-create-group

pathWithNamespace

string

代码组完整路径。

codeup-test-org/test-create-group

visibility

string

可见性,private 标识私有的,internal 标识组织内公开,public 表示全平台公开。

private

webUrl

string

页面访问时的 URL。

""

返回示例

{
    "avatarUrl": "https://tcs-devops.aliyuncs.com/thumbnail/112afcb7a6a35c3f67f1bea827c4/w/100/h/100",
    "description": "描述信息的具体内容",
    "id": 0,
    "name": "test-create-group",
    "nameWithNamespace": "codeup-test-org / test-create-group (斜杠两侧有空格)",
    "ownerId": 0,
    "parentId": 0,
    "path": "test-create-group",
    "pathWithNamespace": "codeup-test-org/test-create-group",
    "visibility": "private",
    "webUrl": "\"\""
}

错误码

访问错误码中心查看 API 相关错误码。