ワークスペースにグループを追加する
POST
https://deploygate.com/api/enterprises/{WORKSPACE_NAME}/organizations
新しいグループをワークスペースに追加します。グループのオーナーにするユーザーはワークスペースに所属している必要があります。
Path Params
Name | Type | Required | Description |
---|---|---|---|
WORKSPACE_NAME | string | true | ワークスペース名 |
Body
Name | Type | Required | Description |
---|---|---|---|
owner_name_or_email | string | true | グループのオーナーにするメンバーのユーザー名またはメールアドレス |
name | string | true | グループ名 |
display_name | string | false | 表示グループ名 |
description | string | false | グループの説明文 |
Example
curl \
-X POST \
--url "https://deploygate.com/api/enterprises/${WORKSPACE_NAME}/organizations" \
-H "Accept: application/json" \
-H "Authorization: Bearer ${API_TOKEN}" \
--form-string "owner_name_or_email=${OWNER_NAME_OR_EMAIL}" \
--form-string "name=${NAME}" \
--form-string "display_name=${DISPLAY_NAME}" \
--form-string "description=${DESCRIPTION}"
Result 201
{
"error": false,
"results": {
"name": "${NAME}",
"display_name": "${DISPLAY_NAME}",
"description": "${DESCRIPTION}"
}
}