ワークスペースのグループにメンバーを追加する
POST
https://deploygate.com/api/enterprises/{WORKSPACE_NAME}/organizations/{ORGANIZATION_NAME}/users
新しいユーザーをワークスペースのグループに追加します。追加するユーザーはワークスペースに所属している必要があります。
Path Params
Name | Type | Required | Description |
---|---|---|---|
WORKSPACE_NAME | string | true | ワークスペース名 |
ORGANIZATION_NAME | string | true | グループ名 |
Body
Name | Type | Required | Description |
---|---|---|---|
user | string | true | ユーザー名 |
Example
curl \
-X POST \
--url "https://deploygate.com/api/enterprises/${WORKSPACE_NAME}/organizations/${ORGANIZATION_NAME}/users" \
-H "Accept: application/json" \
-H "Authorization: Bearer ${API_TOKEN}" \
--form-string "user=${USER_NAME}"
Result 201